diff options
author | Jeremy Allison <jra@samba.org> | 2001-12-20 22:27:05 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-12-20 22:27:05 +0000 |
commit | 9ed10f83d76eba1c4d4ac19842314f24db1c7a65 (patch) | |
tree | 5d3a6e68e9a597e160e74d03f34799850dd43a08 /source3/rpcclient/samsync.c | |
parent | 0c26ae18809f82146ff584c3ba875c82d0b4824f (diff) | |
download | samba-9ed10f83d76eba1c4d4ac19842314f24db1c7a65.tar.gz samba-9ed10f83d76eba1c4d4ac19842314f24db1c7a65.tar.bz2 samba-9ed10f83d76eba1c4d4ac19842314f24db1c7a65.zip |
Removed global debugf. Replaced with lp_set_logfile(name).
Fixed winbindd to finally stop leaving log. file droppings :-).
Jeremy.
(This used to be commit 0bea6cf79a44f79fa3a4f2c8381e898e79c66509)
Diffstat (limited to 'source3/rpcclient/samsync.c')
-rw-r--r-- | source3/rpcclient/samsync.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/rpcclient/samsync.c b/source3/rpcclient/samsync.c index 4d3e15550e..532517f2ef 100644 --- a/source3/rpcclient/samsync.c +++ b/source3/rpcclient/samsync.c @@ -481,7 +481,7 @@ static struct cli_state *init_connection(struct cli_state *cli, struct cli_state cli; NTSTATUS result; int opt; - extern pstring debugf; + pstring logfile; BOOL interactive = False, do_smbpasswd_output = False; BOOL verbose = False; uint32 low_serial = 0; @@ -554,8 +554,9 @@ static struct cli_state *init_connection(struct cli_state *cli, /* Initialise samba */ - slprintf(debugf, sizeof(debugf) - 1, "%s/log.%s", dyn_LOGFILEBASE, + slprintf(logfile, sizeof(logfile) - 1, "%s/log.%s", dyn_LOGFILEBASE, "samsync"); + lp_set_logfile(logfile); setup_logging("samsync", interactive); |