diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-08 15:02:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:52:38 -0500 |
commit | a9fd2d7f42665305e60b96849d96b8e14efb591d (patch) | |
tree | 8e1e1e1ae9ed48ccd234601823903a818ceed5e3 | |
parent | 959c4191824347fe207a5996afb0d9aca7c905cb (diff) | |
download | samba-a9fd2d7f42665305e60b96849d96b8e14efb591d.tar.gz samba-a9fd2d7f42665305e60b96849d96b8e14efb591d.tar.xz samba-a9fd2d7f42665305e60b96849d96b8e14efb591d.zip |
r14040: report errors better
metze
(This used to be commit 10cd4dbac97589e422a56465ba1f2bc060e425bb)
-rw-r--r-- | source4/torture/torture.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/torture/torture.c b/source4/torture/torture.c index 5a86a22133..455cadd3a1 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -931,10 +931,12 @@ static BOOL run_negprot_nowait(void) printf("Opening secondary connection\n"); if (!torture_open_connection(&cli2)) { + printf("Failed to open secondary connection\n"); correct = False; } if (!torture_close_connection(cli2)) { + printf("Failed to close secondary connection\n"); correct = False; } |