summaryrefslogtreecommitdiff
path: root/source3/nmbd/nmbd_namelistdb.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/nmbd/nmbd_namelistdb.c
parent7fed75b4cbeb4110c27525d6e4824c9bf73ceb56 (diff)
downloadsamba-7c09aa553da2f0b855e96396c13d854968537c30.tar.gz
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/nmbd/nmbd_namelistdb.c')
-rw-r--r--source3/nmbd/nmbd_namelistdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_namelistdb.c b/source3/nmbd/nmbd_namelistdb.c
index 15328af33eb..efac14c8c6a 100644
--- a/source3/nmbd/nmbd_namelistdb.c
+++ b/source3/nmbd/nmbd_namelistdb.c
@@ -37,7 +37,7 @@ uint16 samba_nb_type = 0; /* samba's NetBIOS name type */
*/
void set_samba_nb_type(void)
{
- if( lp_wins_support() || (*lp_wins_server()) )
+ if( lp_wins_support() || wins_srv_count() )
samba_nb_type = NB_MFLAG; /* samba is a 'hybrid' node type. */
else
samba_nb_type = NB_BFLAG; /* samba is broadcast-only node type. */