From: Andrew Tridgell Date: Sun, 26 Sep 2004 11:27:01 +0000 (+0000) Subject: r2659: removed some extraneous debug msgs X-Git-Tag: samba-4.0.0alpha6~801^3~13389 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=ad053090b817105a0974f4b8bf0b90e002297903 r2659: removed some extraneous debug msgs (This used to be commit 770aa7e01e68df1fd8538c5b19b63a8545bb0355) --- diff --git a/source4/torture/torture.c b/source4/torture/torture.c index f6004ed428d..5db861124b8 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -123,15 +123,12 @@ BOOL torture_open_connection(struct smbcli_state **c) BOOL torture_close_connection(struct smbcli_state *c) { BOOL ret = True; - DEBUG(9,("torture_close_connection: smbcli_state@%p\n", c)); if (!c) return True; if (NT_STATUS_IS_ERR(smbcli_tdis(c))) { printf("tdis failed (%s)\n", smbcli_errstr(c->tree)); ret = False; } - DEBUG(9,("torture_close_connection: call smbcli_shutdown\n")); smbcli_shutdown(c); - DEBUG(9,("torture_close_connection: exit\n")); return ret; }