On Wed, Dec 27, 2000 at 12:05:57 +0200, Maxim Sobolev wrote: > Please somebody review attached patches. > + u_char *ctable[256]; /* Table for converting unicode filenames */ You deside to use per- Unicode base conversion table, it takes much memory and don't satisfy in any case because you miss other graphics related to charset of OS that made CD (I mean high code table characters like copyright, angle quotes and so on). Better variant is to use exact to/from Unicode conversion tables, if you know exact charset of OS that made CD. I.e. I suggest to use the method that MSDOSFS currently use which is foreign-charset - Unicode - native charset. It takes small memory and convert names without loss of some characters. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message