From 79a654bbe5952a704dcad6b65aa66288a54e02e4 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 27 May 2003 00:22:29 +0000 Subject: Merge from 3.0: remove bogus static initialisers. --- source/nmbd/nmbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/nmbd/nmbd.c b/source/nmbd/nmbd.c index eec447688f0..ad5ab4d734d 100644 --- a/source/nmbd/nmbd.c +++ b/source/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; -- cgit