summaryrefslogtreecommitdiff
path: root/source3/nmbd
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1996-08-09 18:05:34 +0000
committerSamba Release Account <samba-bugs@samba.org>1996-08-09 18:05:34 +0000
commit02b98a8965a60a7c3394835ff01074fc88ffbb89 (patch)
tree4d387b6b0abdcf6b33ab567283e5b6928aa611b9 /source3/nmbd
parent6d3eb881e284659262fd78c6ad269d6882e1f8cd (diff)
downloadsamba-02b98a8965a60a7c3394835ff01074fc88ffbb89.tar.gz
samba-02b98a8965a60a7c3394835ff01074fc88ffbb89.tar.bz2
samba-02b98a8965a60a7c3394835ff01074fc88ffbb89.zip
applying login updates from jim@oxfordcc.co.uk, sent in by
lewis2@server.uwindsor.ca. rest of this patch to follow. bug in interface.c - uninitialised pointer. nmbd has 0x20 as well as 0x0 NetBIOS name when lmhosts entry is added. lkcl (This used to be commit 2b9475cc5fda4b272f19c4f168d3f00363c8042b)
Diffstat (limited to 'source3/nmbd')
-rw-r--r--source3/nmbd/nmbd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c
index e2a4bdeb67..5c3be920f5 100644
--- a/source3/nmbd/nmbd.c
+++ b/source3/nmbd/nmbd.c
@@ -296,6 +296,7 @@ static void load_hosts_file(char *fname)
struct subnet_record *d = find_subnet(ipaddr);
if (d)
{
+ add_netbios_entry(d,name,0x00,NB_ACTIVE,0,source,ipaddr,True,True);
add_netbios_entry(d,name,0x20,NB_ACTIVE,0,source,ipaddr,True,True);
}
}