From ad053090b817105a0974f4b8bf0b90e002297903 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 26 Sep 2004 11:27:01 +0000 Subject: r2659: removed some extraneous debug msgs (This used to be commit 770aa7e01e68df1fd8538c5b19b63a8545bb0355) --- source4/torture/torture.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'source4/torture') diff --git a/source4/torture/torture.c b/source4/torture/torture.c index f6004ed428..5db861124b 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; } -- cgit