1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

Make a couple more of the warnings also be C comments

(This used to be commit 8f343beae7455141ce6a5e27e46ed2970aed8e7f)
This commit is contained in:
Andrew Bartlett 2002-01-03 07:42:15 +00:00
parent a8f356a71f
commit 8f88157dce

View File

@ -2926,7 +2926,7 @@ static BOOL run_error_map_extract(int dummy) {
if (flgs2 & FLAGS2_32_BIT_ERROR_CODES) { if (flgs2 & FLAGS2_32_BIT_ERROR_CODES) {
nt_status = NT_STATUS(IVAL(c_nt.inbuf,smb_rcls)); nt_status = NT_STATUS(IVAL(c_nt.inbuf,smb_rcls));
} else { } else {
printf("** Dos error on NT connection! (%s)\n", printf("/** Dos error on NT connection! (%s)\n */",
cli_errstr(&c_nt)); cli_errstr(&c_nt));
nt_status = NT_STATUS(0xc0000000); nt_status = NT_STATUS(0xc0000000);
} }
@ -2941,7 +2941,7 @@ static BOOL run_error_map_extract(int dummy) {
/* Case #1: 32-bit NT errors */ /* Case #1: 32-bit NT errors */
if (flgs2 & FLAGS2_32_BIT_ERROR_CODES) { 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)); cli_errstr(&c_nt));
errnum = errclass = 0; errnum = errclass = 0;
} else { } else {