summaryrefslogtreecommitdiff
path: root/src/programs/pkttyagent.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/programs/pkttyagent.c')
-rw-r--r--src/programs/pkttyagent.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/programs/pkttyagent.c b/src/programs/pkttyagent.c
index 7bd8031..ba09973 100644
--- a/src/programs/pkttyagent.c
+++ b/src/programs/pkttyagent.c
@@ -63,6 +63,7 @@ main (int argc, char *argv[])
{ NULL, 0, 0, 0, NULL, NULL, NULL }
};
GOptionContext *context;
+ gchar *s;
PolkitAuthority *authority = NULL;
PolkitSubject *subject = NULL;
gpointer local_agent_handle = NULL;
@@ -77,6 +78,11 @@ main (int argc, char *argv[])
error = NULL;
context = g_option_context_new ("");
+ s = g_strdup_printf (_("Report bugs to: %s\n"
+ "%s home page: <%s>"), PACKAGE_BUGREPORT,
+ PACKAGE_NAME, PACKAGE_URL);
+ g_option_context_set_description (context, s);
+ g_free (s);
g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE);
if (!g_option_context_parse (context, &argc, &argv, &error))
{