Fixed bugs in my YOST replacement code. Doing a trim_string
[samba.git] / source3 / lib / system.c
index 995c6beed518ee2bfd9ab9b30bc8d95bc3cc8ccb..ac97449da253cccf4f3eb79804106fb27e5c3554 100644 (file)
@@ -198,14 +198,10 @@ for rename()
 ********************************************************************/
 int sys_rename(char *from, char *to)
 {
-#ifdef KANJI
     pstring zfrom, zto;
     strcpy (zfrom, dos_to_unix (from, False));
     strcpy (zto, dos_to_unix (to, False));
     return rename (zfrom, zto);
-#else 
-    return rename (from, to);
-#endif /* KANJI */
 }
 
 /*******************************************************************