From 12d26899a45ce5d05ac4279fa5915318daa4f2e0 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 13 Mar 2017 17:28:58 +0100 Subject: [PATCH] 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 --- lib/param/param_table.c | 4 ++++ 1 file changed, 4 insertions(+) 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} };