summaryrefslogtreecommitdiff
path: root/source3/nmbd/nmbd_nameregister.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-01-07 06:21:56 +0000
committerJeremy Allison <jra@samba.org>1998-01-07 06:21:56 +0000
commitc23ed625b22bfc765ba95cb7b8addf55625fea44 (patch)
tree05d1f7c6b0f9c00d9ca916306d2628f2f685c18a /source3/nmbd/nmbd_nameregister.c
parent984b47d5a727c0921adf5254c66705929d0c4ef0 (diff)
downloadsamba-c23ed625b22bfc765ba95cb7b8addf55625fea44.tar.gz
samba-c23ed625b22bfc765ba95cb7b8addf55625fea44.tar.bz2
samba-c23ed625b22bfc765ba95cb7b8addf55625fea44.zip
includes.h: Added FreeBSD 3.x fixes. Added HPUX10.x fixes.
interface.c: Added netmask fix. nmbd_nameregister.c: Fixed unitialised variable warnings. nmbd_winsproxy.c: Fixed unitialised variable warnings. nmbd_winsserver.c: Fixed DEC warnings. print_svid.c: Fixed DEC warnings. printing.c: Added LPRng fixes. Jeremy. (This used to be commit 28aff043c4a3693a0c20e87c7ce11eb4bf285b78)
Diffstat (limited to 'source3/nmbd/nmbd_nameregister.c')
-rw-r--r--source3/nmbd/nmbd_nameregister.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/nmbd/nmbd_nameregister.c b/source3/nmbd/nmbd_nameregister.c
index cdaef1a767..3223159ace 100644
--- a/source3/nmbd/nmbd_nameregister.c
+++ b/source3/nmbd/nmbd_nameregister.c
@@ -47,8 +47,8 @@ static void register_name_response(struct subnet_record *subrec,
BOOL success = True;
struct nmb_name *question_name = &rrec->packet->packet.nmb.question.question_name;
struct nmb_name *answer_name = &nmb->answers->rr_name;
- int ttl;
- uint16 nb_flags;
+ int ttl = 0;
+ uint16 nb_flags = 0;
struct in_addr registered_ip;
/* Sanity check. Ensure that the answer name in the incoming packet is the
@@ -169,8 +169,8 @@ static void register_name_timeout_response(struct subnet_record *subrec,
BOOL bcast = sent_nmb->header.nm_flags.bcast;
BOOL success = False;
struct nmb_name *question_name = &sent_nmb->question.question_name;
- uint16 nb_flags;
- int ttl;
+ uint16 nb_flags = 0;
+ int ttl = 0;
struct in_addr registered_ip;
if(bcast)