diff options
author | Jeremy Allison <jra@samba.org> | 1998-04-22 00:56:38 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-04-22 00:56:38 +0000 |
commit | 8584c6bd6621eefb49aff69581caf28e38b4ceda (patch) | |
tree | 188bea764963daf538fe1f783b879ee1d546b7c5 /source3/param | |
parent | 8c7e457ae46a820cef36ac3f99e41f1276bc4587 (diff) | |
download | samba-8584c6bd6621eefb49aff69581caf28e38b4ceda.tar.gz samba-8584c6bd6621eefb49aff69581caf28e38b4ceda.tar.bz2 samba-8584c6bd6621eefb49aff69581caf28e38b4ceda.zip |
genrand.c: Improved generation of random values, more secure.
loadparm.c: Started add of 'security=domain' code.
password.c: Fix for security=server NT bugs.
reply.c: Started add of 'security=domain' code.
server.c: Started add of 'security=domain' code.
smb.h: Started add of 'security=domain' code.
Jeremy.
(This used to be commit e6bda112ebe0d41f54c4249b5c2e1f24011347e1)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index ce9b816e81..661ca901fa 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -402,8 +402,14 @@ static struct enum_list enum_protocol[] = {{PROTOCOL_NT1, "NT1"}, {PROTOCOL_LANM {PROTOCOL_COREPLUS, "COREPLUS"}, {PROTOCOL_COREPLUS, "CORE+"}, {-1, NULL}}; +#ifdef DOMAIN_CLIENT +static struct enum_list enum_security[] = {{SEC_SHARE, "SHARE"}, {SEC_USER, "USER"}, + {SEC_SERVER, "SERVER"}, {SEC_DOMAIN, "DOMAIN"}, + {-1, NULL}}; +#else /* DOMAIN_CLIENT */ static struct enum_list enum_security[] = {{SEC_SHARE, "SHARE"}, {SEC_USER, "USER"}, {SEC_SERVER, "SERVER"}, {-1, NULL}}; +#endif /* DOMAIN_CLIENT */ static struct enum_list enum_printing[] = {{PRINT_SYSV, "sysv"}, {PRINT_AIX, "aix"}, {PRINT_HPUX, "hpux"}, {PRINT_BSD, "bsd"}, |