diff options
author | Adam Lebsack <adam@mandriva.com> | 2000-05-27 23:40:06 +0000 |
---|---|---|
committer | Adam Lebsack <adam@mandriva.com> | 2000-05-27 23:40:06 +0000 |
commit | 9bf03d1088adcd4187b418af6dad4429a91f7e2f (patch) | |
tree | bbe54dbc52f3f79fb87dbd5039802d995035ea3f /perl-install/partition_table.pm | |
parent | 23912a3c7bfcd56adf598eaee1c29315ccae4780 (diff) | |
download | drakx-9bf03d1088adcd4187b418af6dad4429a91f7e2f.tar drakx-9bf03d1088adcd4187b418af6dad4429a91f7e2f.tar.gz drakx-9bf03d1088adcd4187b418af6dad4429a91f7e2f.tar.bz2 drakx-9bf03d1088adcd4187b418af6dad4429a91f7e2f.tar.xz drakx-9bf03d1088adcd4187b418af6dad4429a91f7e2f.zip |
see Changelog
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index 84c7cfa5a..4b77d5d6a 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -216,7 +216,7 @@ sub isNfs($) { $_[0]{type} eq 'nfs' } #- small hack sub isNT($) { arch() !~ /^sparc/ && $_[0]{type} == 0x7 } sub isSupermount($) { $_[0]{type} eq 'supermount' } sub isHFS($) { $type2fs{$_[0]{type}} eq 'hfs' } -sub isApplePartMap { defined $_[0]{isMap} } +sub isHiddenMacPart { defined $_[0]{isMap} } sub isLoopback { defined $_[0]{loopback_file} } sub isTrueFS { isExt2($_[0]) || isReiserfs($_[0]) } sub isMountableRW { isTrueFS($_[0]) || isFat($_[0]) } |