1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

r9569: fixed an uninitialised variable

This commit is contained in:
Andrew Tridgell 2005-08-24 08:33:56 +00:00 committed by Gerald (Jerry) Carter
parent 881452c7b7
commit 5c71547703

View File

@ -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);