diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-29 22:50:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-29 22:50:44 +0000 |
commit | 741125d9f35f342d2550b14fb8a5719d8a772324 (patch) | |
tree | d9c7477947de72a2246da291f5d501f48dcdc5ba /perl-install/fs.pm | |
parent | 2653652a0e4a6a599815a844903ad0aabe354be6 (diff) | |
download | drakx-741125d9f35f342d2550b14fb8a5719d8a772324.tar drakx-741125d9f35f342d2550b14fb8a5719d8a772324.tar.gz drakx-741125d9f35f342d2550b14fb8a5719d8a772324.tar.bz2 drakx-741125d9f35f342d2550b14fb8a5719d8a772324.tar.xz drakx-741125d9f35f342d2550b14fb8a5719d8a772324.zip |
replace iocharset= with nls= for ntfs (as instructed by Thomas Backlund, thanks)
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 6f4098211..4692e3ead 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -478,7 +478,7 @@ sub set_default_options { }); } if (isThisFs('ntfs', $part)) { - put_in_hash($options, { ro => 1, 'umask=0' => $opts{security} < 3, 'iocharset=' => $opts{iocharset} }); + put_in_hash($options, { ro => 1, 'umask=0' => $opts{security} < 3, 'nls=' => $opts{iocharset} }); } if (member('iso9660', split(':', $part->{type})) || isThisFs('auto', $part)) { put_in_hash($options, { user => 1, noexec => 0, 'iocharset=' => $opts{iocharset} }); |