diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-02-24 13:46:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-02-24 13:46:20 +0000 |
commit | cb72a9071f5e439bd9cd0efad10176981284bf4a (patch) | |
tree | 0ffac9c28c0f30da52998d0e2d89048395226b3c /perl-install | |
parent | d95d39686218061c9800a6a6366d3e7df74f2da5 (diff) | |
download | drakx-backup-do-not-use-cb72a9071f5e439bd9cd0efad10176981284bf4a.tar drakx-backup-do-not-use-cb72a9071f5e439bd9cd0efad10176981284bf4a.tar.gz drakx-backup-do-not-use-cb72a9071f5e439bd9cd0efad10176981284bf4a.tar.bz2 drakx-backup-do-not-use-cb72a9071f5e439bd9cd0efad10176981284bf4a.tar.xz drakx-backup-do-not-use-cb72a9071f5e439bd9cd0efad10176981284bf4a.zip |
fix typo
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/mount_options.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 412c55586..8b62f3157 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -157,7 +157,7 @@ sub rationalize { if (!fs::type::can_be_one_of_those_fs_types($part, 'vfat', 'smbfs', 'iso9660', 'udf')) { delete $options->{'codepage='}; } - if (member($part->{mntpoint} , fs::type:: directories_needed_to_boot())) { + if (member($part->{mntpoint} , fs::type::directories_needed_to_boot())) { $options->{$_} = 0 foreach qw(users user noauto supermount); } |