summaryrefslogtreecommitdiff
path: root/source4/lib/util_unistr.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/util_unistr.c')
-rw-r--r--source4/lib/util_unistr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/util_unistr.c b/source4/lib/util_unistr.c
index 2bd990836e..63d68fa12e 100644
--- a/source4/lib/util_unistr.c
+++ b/source4/lib/util_unistr.c
@@ -96,9 +96,9 @@ static int check_dos_char(smb_ucs2_t c)
char buf[10];
smb_ucs2_t c2 = 0;
int len1, len2;
- len1 = convert_string(CH_UCS2, CH_DOS, &c, 2, buf, sizeof(buf));
+ len1 = convert_string(CH_UTF16, CH_DOS, &c, 2, buf, sizeof(buf));
if (len1 == 0) return 0;
- len2 = convert_string(CH_DOS, CH_UCS2, buf, len1, &c2, 2);
+ len2 = convert_string(CH_DOS, CH_UTF16, buf, len1, &c2, 2);
if (len2 != 2) return 0;
return (c == c2);
}