r6231: Herb, I think this checkin was a mistake. Are you sure this is
authorGerald Carter <jerry@samba.org>
Thu, 7 Apr 2005 03:24:02 +0000 (03:24 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:56:30 +0000 (10:56 -0500)
what you meant to change?

Fix build breakage....

source/lib/util_unistr.c

index 7cbae30ced0dca1c6bb0d80196c30b64f2a67417..0b4552e1f5d918b0046cee8a534e0182a4f60384 100644 (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);
 }