aboutsummaryrefslogtreecommitdiff
path: root/src/ka-dialog.c
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-05-07 14:51:36 +0200
committerGuido Günther <agx@sigxcpu.org>2011-05-07 14:51:36 +0200
commitcb23040230f72118a514e5550f754cb470c0b153 (patch)
treed605299387ef6c3854a22b24a943fcdbce739df5 /src/ka-dialog.c
parentNew upstream version 3.0.0 (diff)
downloadkrb5-auth-dialog-cb23040230f72118a514e5550f754cb470c0b153.tar.gz
krb5-auth-dialog-cb23040230f72118a514e5550f754cb470c0b153.tar.bz2
krb5-auth-dialog-cb23040230f72118a514e5550f754cb470c0b153.zip
New upstream version 3.0.1
Diffstat (limited to 'src/ka-dialog.c')
-rw-r--r--src/ka-dialog.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ka-dialog.c b/src/ka-dialog.c
index 5bc8678..fffd2fd 100644
--- a/src/ka-dialog.c
+++ b/src/ka-dialog.c
@@ -1076,7 +1076,7 @@ main (int argc, char *argv[])
GOptionContext *context;
GError *error = NULL;
- gboolean run_auto = FALSE, run_always = FALSE;
+ gboolean run_auto = FALSE;
const char *help_msg =
"Run '" PACKAGE
@@ -1084,9 +1084,6 @@ main (int argc, char *argv[])
const GOptionEntry options[] = {
{"auto", 'a', 0, G_OPTION_ARG_NONE, &run_auto,
"Only run if an initialized ccache is found", NULL},
- /* accepted for compatibility only */
- {"always", 'A', 0, G_OPTION_ARG_NONE, &run_always,
- "Always run (default)", NULL},
{NULL, 0, 0, G_OPTION_ARG_NONE, NULL, NULL, NULL}
};
GFileMonitor *monitor = NULL;
bgstack15