From: Gerald Carter Date: Thu, 7 Apr 2005 03:24:02 +0000 (+0000) Subject: r6231: Herb, I think this checkin was a mistake. Are you sure this is X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~4975 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3643b732ba35af6e329dbda82bb05da81e5da64;p=thirdparty%2Fsamba.git r6231: Herb, I think this checkin was a mistake. Are you sure this is what you meant to change? Fix build breakage.... --- diff --git a/source/lib/util_unistr.c b/source/lib/util_unistr.c index 7cbae30ced0..0b4552e1f5d 100644 --- a/source/lib/util_unistr.c +++ b/source/lib/util_unistr.c @@ -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); }