diff options
author | David Zeuthen <davidz@redhat.com> | 2009-08-19 13:47:01 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2009-08-19 13:47:01 -0400 |
commit | c7ded649ab294d8960ebf3be98461f509c10bdf1 (patch) | |
tree | 4663c594c31d19a83e1825b1003dce02dd443bb8 /src | |
parent | 3ee5f0d219dbb9a4a68c8545e15988b419320bd9 (diff) | |
download | polkit-c7ded649ab294d8960ebf3be98461f509c10bdf1.tar.gz |
Use correct program name when complaining about not being setuid root
Diffstat (limited to 'src')
-rw-r--r-- | src/polkitagent/polkitagenthelper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/polkitagent/polkitagenthelper.c b/src/polkitagent/polkitagenthelper.c index f85b0d4..e7af888 100644 --- a/src/polkitagent/polkitagenthelper.c +++ b/src/polkitagent/polkitagenthelper.c @@ -81,7 +81,7 @@ main (int argc, char *argv[]) /* check that we are setuid root */ if (geteuid () != 0) { - fprintf (stderr, "polkit-grant-helper-pam: needs to be setuid root\n"); + fprintf (stderr, "polkit-agent-helper-1: needs to be setuid root\n"); goto error; } |