summaryrefslogtreecommitdiff
path: root/source3/utils/testparm.c
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>2001-08-26 06:43:39 +0000
committerChristopher R. Hertel <crh@samba.org>2001-08-26 06:43:39 +0000
commit7c09aa553da2f0b855e96396c13d854968537c30 (patch)
tree5f8cc3d4422392781bc031239bebced9301d4d8e /source3/utils/testparm.c
parent7fed75b4cbeb4110c27525d6e4824c9bf73ceb56 (diff)
downloadsamba-7c09aa553da2f0b855e96396c13d854968537c30.tar.gz
samba-7c09aa553da2f0b855e96396c13d854968537c30.tar.bz2
samba-7c09aa553da2f0b855e96396c13d854968537c30.zip
Same as nmbd.c. These now test wins_srv_count() instead of lp_wins_server
to determine whether the 'wins server' parameter is set. (This used to be commit 5b975d3a9cea39e9992a9b556b8a6d9d3ec14807)
Diffstat (limited to 'source3/utils/testparm.c')
-rw-r--r--source3/utils/testparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c
index 9b19a6c0fd..28870fb272 100644
--- a/source3/utils/testparm.c
+++ b/source3/utils/testparm.c
@@ -54,7 +54,7 @@ static int do_global_checks(void)
ret = 1;
}
- if (lp_wins_support() && *lp_wins_server()) {
+ if (lp_wins_support() && wins_srv_count()) {
printf("ERROR: both 'wins support = true' and 'wins server = <server>' \
cannot be set in the smb.conf file. nmbd will abort with this setting.\n");
ret = 1;