From: Andreas Schneider Date: Mon, 13 Mar 2017 16:28:58 +0000 (+0100) Subject: param: Allow to specify kerberos method on the commandline X-Git-Tag: tdb-1.3.13~472 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12d26899a45ce5d05ac4279fa5915318daa4f2e0;p=thirdparty%2Fsamba.git param: Allow to specify kerberos method on the commandline We support --option for our tools but you cannot set an option where the value of the option includes a space. Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlet --- diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 95c3b8c6188..21cac107647 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -202,9 +202,13 @@ static const struct enum_list enum_smbd_profiling_level[] = { static const struct enum_list enum_kerberos_method[] = { {KERBEROS_VERIFY_SECRETS, "default"}, {KERBEROS_VERIFY_SECRETS, "secrets only"}, + {KERBEROS_VERIFY_SECRETS, "secretsonly"}, {KERBEROS_VERIFY_SYSTEM_KEYTAB, "system keytab"}, + {KERBEROS_VERIFY_SYSTEM_KEYTAB, "systemkeytab"}, {KERBEROS_VERIFY_DEDICATED_KEYTAB, "dedicated keytab"}, + {KERBEROS_VERIFY_DEDICATED_KEYTAB, "dedicatedkeytab"}, {KERBEROS_VERIFY_SECRETS_AND_KEYTAB, "secrets and keytab"}, + {KERBEROS_VERIFY_SECRETS_AND_KEYTAB, "secretsandkeytab"}, {-1, NULL} };