From 3d2831db011d11dcc5c44fda3c303e4303910351 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 17 Sep 2001 12:18:36 +0000 Subject: (set_default_options): disable iocharset= and codepage= for supermount --- perl-install/fs.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/perl-install/fs.pm b/perl-install/fs.pm index e047c1611..03397d80f 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -362,6 +362,12 @@ sub set_default_options { $options->{user} = 0; } + if ($options->{supermount}) { + #- drives supermount crazy :'-( + delete $options->{'codepage='}; + delete $options->{'iocharset='}; + } + # have noauto when we have user $options->{noauto} = 1 if $options->{user}; -- cgit v1.2.1