summaryrefslogtreecommitdiff
path: root/source3/lib/interface.c
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/lib/interface.c
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/lib/interface.c')
-rw-r--r--source3/lib/interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c
index 3a532140b3..061ac08c7b 100644
--- a/source3/lib/interface.c
+++ b/source3/lib/interface.c
@@ -334,6 +334,7 @@ static void interpret_interfaces(char *s, struct interface **interfaces,
DEBUG(2,("Warning: inconsistant interface %s\n",inet_ntoa(iface->ip)));
}
+ iface->next = NULL;
(*interfaces) = last_iface = iface;
DEBUG(1,("Added interface ip=%s ",inet_ntoa(iface->ip)));