From 6a359cca8eacfc049b1ab9e98778dcf817bb1b42 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 15 Mar 2002 09:24:56 +0000 Subject: the SEC_DOMAIN tests also apply to SEC_ADS (This used to be commit 775404fe46f72925fb302e149b6f96fab0dbfcb8) --- source3/utils/testparm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index c8021fef05..78b1f6e504 100644 --- a/source3/utils/testparm.c +++ b/source3/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"); -- cgit