summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-05-21 10:35:22 -0700
committerJeremy Allison <jra@samba.org>2010-05-21 10:35:22 -0700
commit03f22005f9692feee150cf51c70d09ce2100ae02 (patch)
tree7545b27caaef22e8abefcf5e88fce6ff768c7a9a /source4
parent8c9ea2ba7ce2536ebc9f5342a050eb5bc63feac3 (diff)
downloadsamba-03f22005f9692feee150cf51c70d09ce2100ae02.tar.gz
samba-03f22005f9692feee150cf51c70d09ce2100ae02.tar.bz2
samba-03f22005f9692feee150cf51c70d09ce2100ae02.zip
Add comments to usage error message for -k to make it obvious what this needs.
Jeremy.
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/cmdline/popt_credentials.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/lib/cmdline/popt_credentials.c b/source4/lib/cmdline/popt_credentials.c
index 80f71eb417..1f61d64af5 100644
--- a/source4/lib/cmdline/popt_credentials.c
+++ b/source4/lib/cmdline/popt_credentials.c
@@ -106,7 +106,8 @@ static void popt_common_credentials_callback(poptContext con,
/* Force us to only use kerberos */
if (arg) {
if (!set_boolean(arg, &use_kerberos)) {
- fprintf(stderr, "Error parsing -k %s\n", arg);
+ fprintf(stderr, "Error parsing -k %s. Should be "
+ "-k = [yes|no]\n", arg);
exit(1);
break;
}
@@ -159,7 +160,7 @@ struct poptOption popt_common_credentials[] = {
{ "authentication-file", 'A', POPT_ARG_STRING, NULL, 'A', "Get the credentials from a file", "FILE" },
{ "machine-pass", 'P', POPT_ARG_NONE, NULL, 'P', "Use stored machine account password (implies -k)" },
{ "simple-bind-dn", 0, POPT_ARG_STRING, NULL, OPT_SIMPLE_BIND_DN, "DN to use for a simple bind" },
- { "kerberos", 'k', POPT_ARG_STRING, NULL, OPT_KERBEROS, "Use Kerberos" },
+ { "kerberos", 'k', POPT_ARG_STRING, NULL, OPT_KERBEROS, "Use Kerberos, -k = [yes|no]" },
{ "sign", 'S', POPT_ARG_NONE, NULL, OPT_SIGN, "Sign connection to prevent modification in transit" },
{ "encrypt", 'e', POPT_ARG_NONE, NULL, OPT_ENCRYPT, "Encrypt connection for privacy" },
{ NULL }