Messages in this thread Patch in this message |  | | Date | Wed, 29 Nov 2000 01:51:06 +0900 | From | Young-Ho Cha <> | Subject | [PATCH] nls support in isofs |
| |
Hi. kernel hackers.
I found a problem that isofs nls did not work in kernel 2.4.0-test*.
so I compared with 2.2 series, and found that isofs default nls was written hard coding with iso8859.
plz apply follwing patch.
Regards, -- Young-Ho, Cha <ganadist@chollian.net> --- linux/fs/inode.c.orig Tue Nov 28 13:22:25 2000 +++ linux/fs/inode.c Tue Nov 28 13:22:45 2000 @@ -737,7 +737,7 @@ #ifdef CONFIG_JOLIET if (joliet_level && opt.utf8 == 0) { - char * p = opt.iocharset ? opt.iocharset : "iso8859-1"; + char * p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT; s->u.isofs_sb.s_nls_iocharset = load_nls(p); if (! s->u.isofs_sb.s_nls_iocharset) { /* Fail only if explicit charset specified */ |  |