From 85533e08b09dfb7910407ed0f97bf4d5513ef418 Mon Sep 17 00:00:00 2001 From: Oktay Imanzade <50494084+TheUtopian@users.noreply.github.com> Date: Tue, 27 Feb 2024 22:26:11 +0400 Subject: [PATCH] pkexec: fixed different quotes in messages --- src/programs/pkexec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/programs/pkexec.c b/src/programs/pkexec.c index 71b179f8..3b690ffa 100644 --- a/src/programs/pkexec.c +++ b/src/programs/pkexec.c @@ -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; }