summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2009-12-15 12:19:44 -0500
committerDavid Zeuthen <davidz@redhat.com>2009-12-15 12:19:44 -0500
commit079bc59310ec3ea4fc260a855f39ec3f08f6bdec (patch)
tree7ee90aefaec02f33bde1cc4b03d33dd2460edcb3
parent2a91f171e23a90aa837bdafe9bb4b3a66fddbb39 (diff)
downloadpolkit-079bc59310ec3ea4fc260a855f39ec3f08f6bdec.tar.gz
Fix error message when no authentication agent is available
Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r--src/programs/pkexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/programs/pkexec.c b/src/programs/pkexec.c
index ae0d842..dcc618d 100644
--- a/src/programs/pkexec.c
+++ b/src/programs/pkexec.c
@@ -478,7 +478,7 @@ main (int argc, char *argv[])
}
else if (polkit_authorization_result_get_is_challenge (result))
{
- g_printerr ("Authorization requires authentication but no authentication was found.\n");
+ g_printerr ("Authorization requires authentication but no authentication agent was found.\n");
goto out;
}
else