summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-03 11:57:30 +1100
committerStefan Metzmacher <metze@samba.org>2012-02-16 15:18:43 +0100
commitd54404e56535e68702e363e623d3695f39fbfa82 (patch)
tree5fbdb93a4ac899d4dc39e74891c9cac03322d14b /source3/param
parenteb3e34e965c04d286c31d6951d781a814bf4ab42 (diff)
downloadsamba-d54404e56535e68702e363e623d3695f39fbfa82.tar.gz
samba-d54404e56535e68702e363e623d3695f39fbfa82.tar.bz2
samba-d54404e56535e68702e363e623d3695f39fbfa82.zip
s3-param Remove off-by-default and unused "send spnego principal"
This is not honoured by the common SPNEGO code. This matches mondern windows versions which do not send this value, as it would be insecure for a client to rely on it. (See also the depricated client use spnego principal directive). Andrew Bartlett Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index c8d5a0994f..20a072d67f 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -935,15 +935,6 @@ static struct parm_struct parm_table[] = {
.flags = FLAG_ADVANCED,
},
{
- .label = "send spnego principal",
- .type = P_BOOL,
- .p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(send_spnego_principal),
- .special = NULL,
- .enum_list = NULL,
- .flags = FLAG_ADVANCED,
- },
- {
.label = "username",
.type = P_STRING,
.p_class = P_LOCAL,
@@ -5258,7 +5249,6 @@ FN_GLOBAL_BOOL(lp_unix_extensions, bUnixExtensions)
FN_GLOBAL_BOOL(lp_use_spnego, bUseSpnego)
FN_GLOBAL_BOOL(lp_client_use_spnego, bClientUseSpnego)
FN_GLOBAL_BOOL(lp_client_use_spnego_principal, client_use_spnego_principal)
-FN_GLOBAL_BOOL(lp_send_spnego_principal, send_spnego_principal)
FN_GLOBAL_BOOL(lp_hostname_lookups, bHostnameLookups)
FN_GLOBAL_CONST_STRING(lp_dedicated_keytab_file, szDedicatedKeytabFile)
FN_GLOBAL_INTEGER(lp_kerberos_method, iKerberosMethod)