diff options
author | Volker Lendecke <vl@samba.org> | 2011-12-13 17:07:39 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-12-14 17:34:21 +0100 |
commit | c21f6a1c6869a5086634bb830d6c3689dea539a3 (patch) | |
tree | 661540839581ed6383e29e6e6d55cd3f02388059 /source3 | |
parent | 78e629c5980a5c60e990bcde75aed31587729f3f (diff) | |
download | samba-c21f6a1c6869a5086634bb830d6c3689dea539a3.tar.gz samba-c21f6a1c6869a5086634bb830d6c3689dea539a3.tar.bz2 samba-c21f6a1c6869a5086634bb830d6c3689dea539a3.zip |
s3: Fix some pointless statics
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nmbd/nmbd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index afc7bbdf41..5a027e417d 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; |