summaryrefslogtreecommitdiff
path: root/source4/torture/torture.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-26 11:27:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:17 -0500
commitad053090b817105a0974f4b8bf0b90e002297903 (patch)
treeed3123c41803324edaed1fca88ad85e8004535f0 /source4/torture/torture.c
parent5a830d062676eb4cc1a20773b461b5a1073d1d33 (diff)
downloadsamba-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.c3
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;
}