summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-03-15 09:24:56 +0000
committerAndrew Tridgell <tridge@samba.org>2002-03-15 09:24:56 +0000
commit775404fe46f72925fb302e149b6f96fab0dbfcb8 (patch)
tree5a789e3d3b7b12ae8884d072cd00622407dfe836
parenta21ba95897531e7964c9e80a81cd5faa7394db77 (diff)
downloadsamba-775404fe46f72925fb302e149b6f96fab0dbfcb8.tar.gz
samba-775404fe46f72925fb302e149b6f96fab0dbfcb8.tar.xz
samba-775404fe46f72925fb302e149b6f96fab0dbfcb8.zip
the SEC_DOMAIN tests also apply to SEC_ADS
-rw-r--r--source/utils/testparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/utils/testparm.c b/source/utils/testparm.c
index c8021fef054..78b1f6e504f 100644
--- a/source/utils/testparm.c
+++ b/source/utils/testparm.c
@@ -46,7 +46,7 @@ static int do_global_checks(void)
int ret = 0;
SMB_STRUCT_STAT st;
- if (lp_security() == SEC_DOMAIN && !lp_encrypted_passwords()) {
+ if (lp_security() >= SEC_DOMAIN && !lp_encrypted_passwords()) {
printf("ERROR: in 'security=domain' mode the 'encrypt passwords' parameter must also be set to 'true'.\n");
ret = 1;
}
@@ -71,7 +71,7 @@ cannot be set in the smb.conf file. nmbd will abort with this setting.\n");
* Password server sanity checks.
*/
- if((lp_security() == SEC_SERVER || lp_security() == SEC_DOMAIN) && !lp_passwordserver()) {
+ if((lp_security() == SEC_SERVER || lp_security() >= SEC_DOMAIN) && !lp_passwordserver()) {
pstring sec_setting;
if(lp_security() == SEC_SERVER)
pstrcpy(sec_setting, "server");