diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-11-08 23:05:34 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-11-08 23:05:34 +0000 |
commit | c501ac2bfa4b9fa88c402bb0313312ea0f565443 (patch) | |
tree | 5c753104c95368c9947f70390e01ac412e0d9762 /source3/nsswitch/winbindd.c | |
parent | 48b32cd865b572c797e6f5de1b8a574bd86e250a (diff) | |
download | samba-c501ac2bfa4b9fa88c402bb0313312ea0f565443.tar.gz samba-c501ac2bfa4b9fa88c402bb0313312ea0f565443.tar.bz2 samba-c501ac2bfa4b9fa88c402bb0313312ea0f565443.zip |
Compleatly remove support for logfile truncation. All logs are opened for
append writes.
(blessed by jra)
Andrew Bartlett
(This used to be commit 81633064dd196c40541ecece8def51745f514646)
Diffstat (limited to 'source3/nsswitch/winbindd.c')
-rw-r--r-- | source3/nsswitch/winbindd.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 059d2f40d3..2bd6d7967c 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -746,7 +746,6 @@ static void usage(void) extern BOOL AllowDebugChange; extern pstring global_myname; extern fstring global_myworkgroup; - extern BOOL append_log; pstring logfile; BOOL interactive = False; int opt; @@ -759,11 +758,6 @@ static void usage(void) fault_setup((void (*)(void *))fault_quit ); - /* Append to log file by default as we are a single process daemon - program. */ - - append_log = True; - snprintf(logfile, sizeof(logfile), "%s/log.winbindd", dyn_LOGFILEBASE); lp_set_logfile(logfile); |