summaryrefslogtreecommitdiffstats
path: root/source/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-09-23 05:16:03 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-09-23 05:16:03 +0000
commit67947bf6e31ee9758f8a2186f83031ba21b716f2 (patch)
treefd6ebb0b42f0df2f15f8ddd047947c161c7e9ba2 /source/param
parente78d0a3615d74cdd023d2d623abc27ac59356ae0 (diff)
downloadsamba-67947bf6e31ee9758f8a2186f83031ba21b716f2.tar.gz
samba-67947bf6e31ee9758f8a2186f83031ba21b716f2.tar.xz
samba-67947bf6e31ee9758f8a2186f83031ba21b716f2.zip
Fix up NT_STATUS return for session setups, Win2k objects to anything other
than NT_STATUS_LOGON_FAILURE. This also brings us (almost) back in line with their implementation. Kill off SMBENCRYPT() macro Kill off 'nt smb support' paramater - tridge okayed this one. Andrew Bartlett
Diffstat (limited to 'source/param')
-rw-r--r--source/param/loadparm.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index e8831f652af..1ead342ebe6 100644
--- a/source/param/loadparm.c
+++ b/source/param/loadparm.c
@@ -775,7 +775,6 @@ static struct parm_struct parm_table[] = {
{"read raw", P_BOOL, P_GLOBAL, &Globals.bReadRaw, NULL, NULL, 0},
{"write raw", P_BOOL, P_GLOBAL, &Globals.bWriteRaw, NULL, NULL, 0},
- {"nt smb support", P_BOOL, P_GLOBAL, &Globals.bNTSmbSupport, NULL, NULL, 0},
{"nt pipe support", P_BOOL, P_GLOBAL, &Globals.bNTPipeSupport, NULL, NULL, 0},
{"nt acl support", P_BOOL, P_GLOBAL, &Globals.bNTAclSupport, NULL, NULL, 0},
{"announce version", P_STRING, P_GLOBAL, &Globals.szAnnounceVersion, NULL, NULL, 0},
@@ -1273,7 +1272,6 @@ static void init_globals(void)
Globals.bPamPasswordChange = False;
Globals.bPasswdChatDebug = False;
Globals.bUnicode = True; /* Do unicode on the wire by default */
- Globals.bNTSmbSupport = True; /* Do NT SMB's by default. */
Globals.bNTPipeSupport = True; /* Do NT pipes by default. */
Globals.bNTAclSupport = True; /* Use NT ACLs by default. */
Globals.bStatCache = True; /* use stat cache by default */
@@ -1557,7 +1555,6 @@ FN_GLOBAL_BOOL(lp_bind_interfaces_only, &Globals.bBindInterfacesOnly)
FN_GLOBAL_BOOL(lp_pam_password_change, &Globals.bPamPasswordChange)
FN_GLOBAL_BOOL(lp_unix_password_sync, &Globals.bUnixPasswdSync)
FN_GLOBAL_BOOL(lp_passwd_chat_debug, &Globals.bPasswdChatDebug)
-FN_GLOBAL_BOOL(lp_nt_smb_support, &Globals.bNTSmbSupport)
FN_GLOBAL_BOOL(lp_unicode, &Globals.bUnicode)
FN_GLOBAL_BOOL(lp_nt_pipe_support, &Globals.bNTPipeSupport)
FN_GLOBAL_BOOL(lp_nt_acl_support, &Globals.bNTAclSupport)