From 9ed10f83d76eba1c4d4ac19842314f24db1c7a65 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 20 Dec 2001 22:27:05 +0000 Subject: 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) --- source3/torture/rpctorture.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/torture') 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; } -- cgit