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/torture | |
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/torture')
-rw-r--r-- | source3/torture/rpctorture.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/torture/rpctorture.c b/source3/torture/rpctorture.c index 231e3a75f5..6844440fbe 100644 --- a/source3/torture/rpctorture.c +++ b/source3/torture/rpctorture.c @@ -30,8 +30,6 @@ extern pstring global_myname; extern pstring user_socket_options; -extern pstring debugf; - extern file_info def_finfo; #define CNV_LANG(s) dos2unix_format(s,False) @@ -232,6 +230,7 @@ enum client_action enum client_action cli_action = CLIENT_NONE; int nprocs = 1; int numops = 100; + pstring logfile; struct client_info cli_info; @@ -445,8 +444,9 @@ enum client_action case 'l': { - slprintf(debugf, sizeof(debugf)-1, + slprintf(logfile, sizeof(logfile)-1, "%s.client",optarg); + lp_set_logfile(logfile); break; } |