1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-31 17:18:04 +03:00

r6231: Herb, I think this checkin was a mistake. Are you sure this is

what you meant to change?

Fix build breakage....
This commit is contained in:
Gerald Carter 2005-04-07 03:24:02 +00:00 committed by Gerald (Jerry) Carter
parent b6117dd72d
commit b3643b732b

View File

@ -113,7 +113,7 @@ static int check_dos_char_slowly(smb_ucs2_t c)
if (len1 == 0) return 0;
len2 = convert_string(CH_DOS, CH_UCS2, buf, len1, &c2, 2,False);
if (len2 != 2) return 0;
return (c == *c2);
return (c == c2);
}