diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-03-19 22:06:36 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-03-19 22:06:36 +0000 |
commit | cd7a2e965a162c96348e429604676232e813b929 (patch) | |
tree | a30277702cfa59ec3e84d59ef5d11750886756ed | |
parent | ed34ab41d25b4c6080ffa8beb4a7145a5d71363d (diff) | |
download | drakx-cd7a2e965a162c96348e429604676232e813b929.tar drakx-cd7a2e965a162c96348e429604676232e813b929.tar.gz drakx-cd7a2e965a162c96348e429604676232e813b929.tar.bz2 drakx-cd7a2e965a162c96348e429604676232e813b929.tar.xz drakx-cd7a2e965a162c96348e429604676232e813b929.zip |
fix loopback appearing twice in format partition
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 950fb9ed4..5cde8036c 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -123,7 +123,7 @@ sub readProcPartitions { #- get all normal partition including special ones as found on sparc. sub get_fstab { - loopback::loopbacks(@_), map { partition_table::get_normal_parts($_) } @_ + map { partition_table::get_normal_parts($_) } @_ } #- get normal partition that should be visible for working on. |