diff options
author | Tim Potter <tpot@samba.org> | 2003-05-27 00:22:29 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-05-27 00:22:29 +0000 |
commit | 5612da76e0892a254e975d0846764c7c6078e920 (patch) | |
tree | 7f126dce3f69483ed6d15b768020528ad88e9ef2 | |
parent | d89f4a1baef3991ed8877e4765af0b46e79b04e7 (diff) | |
download | samba-5612da76e0892a254e975d0846764c7c6078e920.tar.gz samba-5612da76e0892a254e975d0846764c7c6078e920.tar.xz samba-5612da76e0892a254e975d0846764c7c6078e920.zip |
Merge from 3.0: remove bogus static initialisers.
(This used to be commit 79a654bbe5952a704dcad6b65aa66288a54e02e4)
-rw-r--r-- | source3/nmbd/nmbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index eec447688f0..ad5ab4d734d 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -30,13 +30,13 @@ int global_nmb_port = -1; extern BOOL global_in_nmbd; /* are we running as a daemon ? */ -static BOOL is_daemon = False; +static BOOL is_daemon; /* fork or run in foreground ? */ static BOOL Fork = True; /* log to standard output ? */ -static BOOL log_stdout = False; +static BOOL log_stdout; /* have we found LanMan clients yet? */ BOOL found_lm_clients = False; |