From 641dd258adb2a3d265b89b2726d93fac3942e36a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 8 Oct 2002 18:26:12 +0000 Subject: Ensure we register the 1c name on the unicast subnet. Jeremy. (This used to be commit e1ea20d2d14b9671503eeeccddc7683cc94371c0) --- source3/nmbd/nmbd_logonnames.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'source3/nmbd') diff --git a/source3/nmbd/nmbd_logonnames.c b/source3/nmbd/nmbd_logonnames.c index 1406515d6b..28e0e8a02b 100644 --- a/source3/nmbd/nmbd_logonnames.c +++ b/source3/nmbd/nmbd_logonnames.c @@ -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)); } -- cgit