From 1aedda6160e0748d82a68bcd64f661ea1b80af9d Mon Sep 17 00:00:00 2001 From: Samba Release Account Date: Sat, 17 Aug 1996 15:14:24 +0000 Subject: - fixed wins.dat reloading (it wasn't happening!) - made nb_flags an unsigned 16 bit int in nameserv.h - nmbd was calling add_my_subnets() with an uninitialised parameter group. removed it. lkcl (This used to be commit 3d55e541569e7ab887bddc284bddcafdf86c4d22) --- source3/include/nameserv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include/nameserv.h') diff --git a/source3/include/nameserv.h b/source3/include/nameserv.h index a505f403ca..8dc737bdb0 100644 --- a/source3/include/nameserv.h +++ b/source3/include/nameserv.h @@ -126,7 +126,7 @@ struct nmb_name { struct nmb_ip { struct in_addr ip; /* ip address of host that owns this name */ - int nb_flags; /* netbios flags */ + uint16 nb_flags; /* netbios flags */ }; /* this is the structure used for the local netbios name list */ -- cgit