1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

testparm: skip the per-share logic checks when --skip-logic-checks is specified.

Michael
This commit is contained in:
Michael Adam 2008-07-15 12:55:57 +02:00
parent 5b8a4c3348
commit 6cafee7e6a

View File

@ -293,7 +293,7 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_
}
for (s=0;s<1000;s++) {
if (VALID_SNUM(s)) {
if (VALID_SNUM(s) && (skip_logic_checks == 0)) {
const char **deny_list = lp_hostsdeny(s);
const char **allow_list = lp_hostsallow(s);
int i;