diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-25 16:11:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-25 16:11:49 +0000 |
commit | 7f178e30a30842d3a2eb91138e102971f02f4433 (patch) | |
tree | 3fb93210cfccd8b45d41ba7ceb7644c5a0fd4614 /perl-install/install/steps_interactive.pm | |
parent | 85f1ea414035c750e76ce778077b3e51856712f8 (diff) | |
download | drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar.gz drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar.bz2 drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar.xz drakx-7f178e30a30842d3a2eb91138e102971f02f4433.zip |
- use umask=0 by default on vfat (#39315)
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r-- | perl-install/install/steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 9fcc91370..239b6c7bf 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -1037,7 +1037,7 @@ try to force installation even if that destroys the first partition?")); sub check_security_level { my ($o, $security) = @_; - if ($security > 2 && find { $_->{fs_type} eq 'vfat' } @{$o->{fstab}}) { + if ($security > 3 && find { $_->{fs_type} eq 'vfat' } @{$o->{fstab}}) { $o->ask_okcancel('', N("In this security level, access to the files in the Windows partition is restricted to the administrator.")) or return 0; } return 1; |