1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-10 13:57:47 +03:00

Ensure we register the 1c name on the unicast subnet.

Jeremy.
(This used to be commit ca6146c2d345902446665ebfa88f78a06eb58831)
This commit is contained in:
Jeremy Allison 2002-10-08 18:24:12 +00:00
parent 0672da5c43
commit 5bf57880e7

View File

@ -109,6 +109,16 @@ in workgroup %s on subnet %s\n",
/* Tell the namelist writer to write out a change. */
subrec->work_changed = True;
/*
* Add the WORKGROUP<1C> name to the UNICAST subnet with the IP address
* for this subnet so we will respond to queries on this name.
*/
{
struct nmb_name nmbname;
make_nmb_name(&nmbname,global_myworkgroup,0x1c);
insert_permanent_name_into_unicast(subrec, &nmbname, 0x1c);
}
DEBUG(0,("become_logon_server_success: Samba is now a logon server \
for workgroup %s on subnet %s\n", work->work_group, subrec->subnet_name));
}