summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-08-24 08:33:56 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:34:30 -0500
commitd42e54648e25c910f097772d34d6a154597d7234 (patch)
tree8694728975fa8c1c4690b84f16d76c8803ff64e8
parent4a37c7ebbe0beec064f11ea075e1a5285290d7e1 (diff)
downloadsamba-d42e54648e25c910f097772d34d6a154597d7234.tar.gz
samba-d42e54648e25c910f097772d34d6a154597d7234.tar.bz2
samba-d42e54648e25c910f097772d34d6a154597d7234.zip
r9569: fixed an uninitialised variable
(This used to be commit 5c71547703eeb328cdfbefbbfce6da38f7e6c5d5)
-rw-r--r--source4/utils/nmblookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/utils/nmblookup.c b/source4/utils/nmblookup.c
index c8490d08e6..b74a86d345 100644
--- a/source4/utils/nmblookup.c
+++ b/source4/utils/nmblookup.c
@@ -178,7 +178,7 @@ static void process_one(const char *name)
enum nbt_name_type node_type = NBT_NAME_CLIENT;
char *node_name, *p;
struct nbt_name_socket *nbtsock;
- NTSTATUS status;
+ NTSTATUS status = NT_STATUS_OK;
if (!options.case_sensitive) {
name = strupper_talloc(tmp_ctx, name);