From 3cd1101c9b6dd998384e3fa9f5e0bae94a70b737 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Thu, 20 Apr 2006 14:14:12 +0000 Subject: r15152: Fix a case when target is offline. Jerry, this needs to be in 3.0.23pre1 (This used to be commit f068862e56861d74021d72726248cb738a2ff0fe) --- source3/utils/smbcontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index e1bf25ad05..5c798c7901 100644 --- a/source3/utils/smbcontrol.c +++ b/source3/utils/smbcontrol.c @@ -846,7 +846,7 @@ static void usage(poptContext *pc) static struct process_id parse_dest(const char *dest) { - struct process_id result; + struct process_id result = {-1}; pid_t pid; /* Zero is a special return value for broadcast smbd */ -- cgit