Skip to content

Commit

Permalink
pkexec: fixed different quotes in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUtopian authored Feb 27, 2024
1 parent aeec7ea commit 85533e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/programs/pkexec.c
Original file line number Diff line number Diff line change
Expand Up @@ -606,12 +606,12 @@ main (int argc, char *argv[])
rc = getpwnam_r (opt_user, &pwstruct, pwbuf, sizeof pwbuf, &pw);
if (rc == 0 && pw == NULL)
{
g_printerr ("User `%s' does not exist.\n", opt_user);
g_printerr ("User '%s' does not exist.\n", opt_user);
goto out;
}
else if (pw == NULL)
{
g_printerr ("Error getting information for user `%s': %s\n", opt_user, g_strerror (rc));
g_printerr ("Error getting information for user '%s': %s\n", opt_user, g_strerror (rc));
goto out;
}

Expand Down

0 comments on commit 85533e0

Please sign in to comment.