summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-08-13 11:13:11 +0000
committerAndrew Tridgell <tridge@samba.org>1996-08-13 11:13:11 +0000
commitc66ad071b7ff2dcdd7734b72670d181bb3ac6de7 (patch)
tree5af744ec040179138e2d546ad37a5791425702d1
parentd84f5402fded4ffb9c2735fecaa47ec3d2c636c0 (diff)
downloadsamba-c66ad071b7ff2dcdd7734b72670d181bb3ac6de7.tar.gz
- add the 0x1c name for all interfaces if we are a logon server
-rw-r--r--source/nameserv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/nameserv.c b/source/nameserv.c
index da1480961f1..289f6702b3b 100644
--- a/source/nameserv.c
+++ b/source/nameserv.c
@@ -198,10 +198,10 @@ void add_my_names(void)
add_netbios_entry(d,"__SAMBA__",0x20,nb_type|NB_ACTIVE,0,SELF,ip,False,wins);
add_netbios_entry(d,"__SAMBA__",0x00,nb_type|NB_ACTIVE,0,SELF,ip,False,wins);
- if (!wins_iface && lp_domain_logons() && lp_domain_master()) {
- /* XXXX the 0x1c is apparently something to do with domain logons */
+ if (lp_domain_logons()) {
+ /* 0x1c is used to find logon servers for a domain */
add_my_name_entry(d, my_workgroup(),0x1c,nb_type|NB_ACTIVE|NB_GROUP);
- }
+ }
}
if (lp_domain_master() && (d = find_subnet(ipgrp)))
{