Removed unused code check_dos_char_slowly.
authorJeremy Allison <jra@samba.org>
Sat, 26 Feb 2011 01:25:20 +0000 (17:25 -0800)
committerJeremy Allison <jra@samba.org>
Sat, 26 Feb 2011 01:49:26 +0000 (17:49 -0800)
source3/lib/util_unistr.c

index 02a95bdbed49873070021707716541758428c320..14b5a8706b8d0a42ffd6bb5b8fa8daffa583eea7 100644 (file)
@@ -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 <tt>valid.dat</tt> or
  * create from the configured codepage.