diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-03 07:42:15 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-03 07:42:15 +0000 |
commit | 8f88157dcecbecc149381b520c3724d5c080726e (patch) | |
tree | 0b0e14c279e7c837f65c05b5dde765b94d2cd5d4 /source3/torture | |
parent | a8f356a71f20152a42962d54d52893084767ad2c (diff) | |
download | samba-8f88157dcecbecc149381b520c3724d5c080726e.tar.gz samba-8f88157dcecbecc149381b520c3724d5c080726e.tar.bz2 samba-8f88157dcecbecc149381b520c3724d5c080726e.zip |
Make a couple more of the warnings also be C comments
(This used to be commit 8f343beae7455141ce6a5e27e46ed2970aed8e7f)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 4 |
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 { |