diff options
author | Gerald Carter <jerry@samba.org> | 2005-04-07 03:24:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:30 -0500 |
commit | dc30062d71ea4b53862c9026dc9f5385c899f449 (patch) | |
tree | 357cbbc9122d1766d2532ffe60aa463686f57c81 /source3 | |
parent | be0c01da4ce805440638ec7b0b06c4279bc59d6a (diff) | |
download | samba-dc30062d71ea4b53862c9026dc9f5385c899f449.tar.gz samba-dc30062d71ea4b53862c9026dc9f5385c899f449.tar.bz2 samba-dc30062d71ea4b53862c9026dc9f5385c899f449.zip |
r6231: Herb, I think this checkin was a mistake. Are you sure this is
what you meant to change?
Fix build breakage....
(This used to be commit b3643b732ba35af6e329dbda82bb05da81e5da64)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/util_unistr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c index 7cbae30ced..0b4552e1f5 100644 --- a/source3/lib/util_unistr.c +++ b/source3/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); } |