From ebb2fb7efb1beea63720d3753685bb2eab5f19ee Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 25 Feb 2011 17:25:20 -0800 Subject: Removed unused code check_dos_char_slowly. --- source3/lib/util_unistr.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'source3') diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c index 02a95bdbed..14b5a8706b 100644 --- a/source3/lib/util_unistr.c +++ b/source3/lib/util_unistr.c @@ -42,23 +42,6 @@ void gfree_case_tables(void) initialized = false; } -static int check_dos_char_slowly(smb_ucs2_t c) -{ - char buf[10]; - smb_ucs2_t c2 = 0; - int len1, len2; - - len1 = convert_string(CH_UTF16LE, CH_DOS, &c, 2, buf, sizeof(buf),False); - if (len1 == 0) { - return 0; - } - len2 = convert_string(CH_DOS, CH_UTF16LE, buf, len1, &c2, 2,False); - if (len2 != 2) { - return 0; - } - return (c == c2); -} - /** * Load the valid character map table from valid.dat or * create from the configured codepage. -- cgit