diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-07-23 21:15:31 +0000 |
commit | 5a632fe532f355a2583970fefb2ed8ceec6c9460 (patch) | |
tree | 53c1ddbe41a4e8dad28ca4382794803ae177fbc2 /perl-install/fs.pm | |
parent | bc25ea4a6ee8505a77972e2a723607735a4e19f9 (diff) | |
download | drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.gz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.bz2 drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.tar.xz drakx-5a632fe532f355a2583970fefb2ed8ceec6c9460.zip |
no_comment
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 024ceb5e6..0b08c0775 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -239,7 +239,5 @@ sub write_fstab($;$$) { exists $new{$a} || exists $new{$b} and next; print F $_; } - foreach (@to_add) { - print F join(" ", @$_), "\n"; - } + print F join(" ", @$_), "\n" foreach @to_add; } |