From c21f6a1c6869a5086634bb830d6c3689dea539a3 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 13 Dec 2011 17:07:39 +0100 Subject: [PATCH] s3: Fix some pointless statics --- source3/nmbd/nmbd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; -- 2.34.1