summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-06-29 10:54:07 +0000
committerOlivier Blin <oblin@mandriva.org>2004-06-29 10:54:07 +0000
commit477a8cc709be345504c6cbbf1b57103978484e33 (patch)
tree528947268e4f6874bf954648e9df2bd83fa19e0b /perl-install/fs.pm
parent7fc03519620b88cc83a498a9e238d25a890d6122 (diff)
downloaddrakx-backup-do-not-use-477a8cc709be345504c6cbbf1b57103978484e33.tar
drakx-backup-do-not-use-477a8cc709be345504c6cbbf1b57103978484e33.tar.gz
drakx-backup-do-not-use-477a8cc709be345504c6cbbf1b57103978484e33.tar.bz2
drakx-backup-do-not-use-477a8cc709be345504c6cbbf1b57103978484e33.tar.xz
drakx-backup-do-not-use-477a8cc709be345504c6cbbf1b57103978484e33.zip
do not add default device in device hash, it will be filled with result from fs::subpart_from_wild_device_name
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index dda2716f5..6093b005e 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -70,7 +70,7 @@ sub read_fstab {
$dev =~ s/\\040/ /g;
my $h = {
- device => $dev, mntpoint => $mntpoint, type => $type,
+ mntpoint => $mntpoint, type => $type,
options => $options, comment => $comment,
if_(member('keep_freq_passno', @reading_options), freq => $freq, passno => $passno),
};