From: Volker Lendecke Date: Tue, 13 Dec 2011 16:07:39 +0000 (+0100) Subject: s3: Fix some pointless statics X-Git-Url: http://git.samba.org/?p=kai%2Fsamba.git;a=commitdiff_plain;h=c21f6a1c6869a5086634bb830d6c3689dea539a3 s3: Fix some pointless statics --- diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index afc7bbdf413..5a027e417d4 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -735,11 +735,11 @@ static bool open_sockets(bool isdaemon, int port) int main(int argc, const char *argv[]) { - static bool is_daemon; - static bool opt_interactive; - static bool Fork = true; - static bool no_process_group; - static bool log_stdout; + bool is_daemon; + bool opt_interactive; + bool Fork = true; + bool no_process_group; + bool log_stdout; poptContext pc; char *p_lmhosts = NULL; int opt;