1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Append to log.winbindd instead of overwriting it so we are consistent with

smbd/nmbd behaviour.
(This used to be commit 54d2765615)
This commit is contained in:
Tim Potter 2001-12-21 02:23:38 +00:00
parent 203c2301eb
commit 2bfeee924c

View File

@ -730,6 +730,7 @@ int main(int argc, char **argv)
{
extern pstring global_myname;
extern fstring global_myworkgroup;
extern BOOL append_log;
pstring logfile;
int accept_sock;
BOOL interactive = False;
@ -741,6 +742,12 @@ int main(int argc, char **argv)
CatchSignal(SIGUSR1, SIG_IGN);
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);