diff options
author | Andrew Bartlett <abartlet@samba.org> | 2017-07-03 14:16:50 +1200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2017-07-04 06:57:20 +0200 |
commit | 00db3aba6cf9ebaafdf39ee2f9c7ba5ec2281ea0 (patch) | |
tree | 4ea7182cd156999dd7c205822adac7d00ee1ac2d /lib/param/param_table.c | |
parent | c278fa65ebe18063a09bb1f2af5e39459f9f2a7d (diff) | |
download | samba-00db3aba6cf9ebaafdf39ee2f9c7ba5ec2281ea0.tar.gz |
param: Add new "disabled" value to "ntlm auth" to disable NTLM totally
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11923
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 4e9910dd083..f9052304bda 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -332,6 +332,7 @@ static const struct enum_list enum_mangled_names[] = { }; static const struct enum_list enum_ntlm_auth[] = { + {NTLM_AUTH_DISABLED, "disabled"}, {NTLM_AUTH_NTLMV2_ONLY, "ntlmv2-only"}, {NTLM_AUTH_NTLMV2_ONLY, "no"}, {NTLM_AUTH_NTLMV2_ONLY, "false"}, |