summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/torture/torture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c
index dcae941424..fbc17e0c6b 100644
--- a/source3/torture/torture.c
+++ b/source3/torture/torture.c
@@ -2926,7 +2926,7 @@ static BOOL run_error_map_extract(int dummy) {
if (flgs2 & FLAGS2_32_BIT_ERROR_CODES) {
nt_status = NT_STATUS(IVAL(c_nt.inbuf,smb_rcls));
} else {
- printf("** Dos error on NT connection! (%s)\n",
+ printf("/** Dos error on NT connection! (%s)\n */",
cli_errstr(&c_nt));
nt_status = NT_STATUS(0xc0000000);
}
@@ -2941,7 +2941,7 @@ static BOOL run_error_map_extract(int dummy) {
/* Case #1: 32-bit NT errors */
if (flgs2 & FLAGS2_32_BIT_ERROR_CODES) {
- printf("** NT error on DOS connection! (%s)\n",
+ printf("/** NT error on DOS connection! (%s)\n*/",
cli_errstr(&c_nt));
errnum = errclass = 0;
} else {