r2659: removed some extraneous debug msgs
authorAndrew Tridgell <tridge@samba.org>
Sun, 26 Sep 2004 11:27:01 +0000 (11:27 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:59:17 +0000 (12:59 -0500)
(This used to be commit 770aa7e01e68df1fd8538c5b19b63a8545bb0355)

source4/torture/torture.c

index f6004ed428d5151cab683c31b8d81c9c1e127784..5db861124b816db97efdb2bf1792a4f5a7a38eab 100644 (file)
@@ -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;
 }