diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-26 11:27:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:17 -0500 |
commit | ad053090b817105a0974f4b8bf0b90e002297903 (patch) | |
tree | ed3123c41803324edaed1fca88ad85e8004535f0 /source4/torture/torture.c | |
parent | 5a830d062676eb4cc1a20773b461b5a1073d1d33 (diff) | |
download | samba-ad053090b817105a0974f4b8bf0b90e002297903.tar.gz samba-ad053090b817105a0974f4b8bf0b90e002297903.tar.bz2 samba-ad053090b817105a0974f4b8bf0b90e002297903.zip |
r2659: removed some extraneous debug msgs
(This used to be commit 770aa7e01e68df1fd8538c5b19b63a8545bb0355)
Diffstat (limited to 'source4/torture/torture.c')
-rw-r--r-- | source4/torture/torture.c | 3 |
1 files changed, 0 insertions, 3 deletions
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; } |