diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-05 10:48:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-05 10:48:43 +0000 |
commit | 80c54d5ea9cdd5d1237adb563db70077b5d5f0ec (patch) | |
tree | a9205e6ed96eab4eae9a2b6e3b31c4acc465e570 /perl-install/fs.pm | |
parent | ab37fdcc5ebfe36dd23a591b4c62989869d9c705 (diff) | |
download | drakx-80c54d5ea9cdd5d1237adb563db70077b5d5f0ec.tar drakx-80c54d5ea9cdd5d1237adb563db70077b5d5f0ec.tar.gz drakx-80c54d5ea9cdd5d1237adb563db70077b5d5f0ec.tar.bz2 drakx-80c54d5ea9cdd5d1237adb563db70077b5d5f0ec.tar.xz drakx-80c54d5ea9cdd5d1237adb563db70077b5d5f0ec.zip |
handle spaces in username
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index a797977d6..0f757f888 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -69,8 +69,7 @@ sub read_fstab { # prefering type "smbfs" over "smb" $fs_type = 'smbfs'; } - $mntpoint =~ s/\\040/ /g; - $dev =~ s/\\040/ /g; + s/\\040/ /g foreach $mntpoint, $dev, $options; my $h = { mntpoint => $mntpoint, fs_type => $fs_type, @@ -330,8 +329,7 @@ sub prepare_write_fstab { my $fs_type = $_->{fs_type} || 'auto'; - $mntpoint =~ s/ /\\040/g; - $device =~ s/ /\\040/g; + s/ /\\040/g foreach $mntpoint, $device, $options; # handle bloody supermount special case if ($options =~ /supermount/) { |