From 02b98a8965a60a7c3394835ff01074fc88ffbb89 Mon Sep 17 00:00:00 2001 From: Samba Release Account Date: Fri, 9 Aug 1996 18:05:34 +0000 Subject: 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) --- source3/lib/interface.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/lib/interface.c') 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))); -- cgit