Subversion Repositories Kolibri OS

Rev

Rev 6725 | Rev 6745 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6725 Rev 6727
Line 89... Line 89...
89
 
89
 
Line 90... Line 90...
90
} /* end function mapattr() */
90
} /* end function mapattr() */
91
 
91
 
92
 
92
 
Line 93... Line -...
93
/********************************************************************************************************************/
-
 
94
/*** Function checkdir() */
-
 
95
/********************************************************************************************************************/
-
 
96
 
-
 
97
/************************/
93
/********************************************************************************************************************/
98
/*  Function mapname()  */
94
/***  Function mapname()  */
99
/************************/
95
/********************************************************************************************************************/
100
 
96
 
101
int mapname(__G__ renamed)
97
int mapname(__G__ renamed)
Line 210... Line 206...
210
 
206
 
211
            default:
207
            default:
212
                /* disable control character filter when requested,
208
                /* disable control character filter when requested,
213
                 * else allow 8-bit characters (e.g. UTF-8) in filenames:
209
                 * else allow 8-bit characters (e.g. UTF-8) in filenames:
-
 
210
                 */
214
                 */
211
                if ((isprint(workch) || (128 <= workch && workch <= 254)))
215
                 ;
212
                    *pp++ = (char)workch;
216
/*kos
213
/*kos
217
                if (uO.cflxflag ||
214
                if (uO.cflxflag ||
218
                    (isprint(workch) || (128 <= workch && workch <= 254)))
215
                    (isprint(workch) || (128 <= workch && workch <= 254)))
219
                    *pp++ = (char)workch;
216
                    *pp++ = (char)workch;
Line 348... Line 345...
348
#endif /* 0 */
345
#endif /* 0 */
Line 349... Line 346...
349
 
346
 
350
 
347
 
351
 
348
 
-
 
349
 
Line 352... Line 350...
352
 
350
/********************************************************************************************************************/
353
/***********************/
351
/*** Function checkdir() */
354
/* Function checkdir() */
352
/********************************************************************************************************************/
355
/***********************/
353