diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-28 22:56:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-28 22:56:04 +0000 |
commit | ca30120cd8d69cb7424bb1f37047fdbaf64a3a4c (patch) | |
tree | 1d1e999264e67a7ec2cb893b2b4509e0824f40a7 /perl-install | |
parent | cfda00aa104f3d384fbc29c63317522ee3ab4613 (diff) | |
download | drakx-ca30120cd8d69cb7424bb1f37047fdbaf64a3a4c.tar drakx-ca30120cd8d69cb7424bb1f37047fdbaf64a3a4c.tar.gz drakx-ca30120cd8d69cb7424bb1f37047fdbaf64a3a4c.tar.bz2 drakx-ca30120cd8d69cb7424bb1f37047fdbaf64a3a4c.tar.xz drakx-ca30120cd8d69cb7424bb1f37047fdbaf64a3a4c.zip |
use add2hash_ for setting "username=%" otherwise it causes havoc in auto_install's manualFstab
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index c49634a21..b16f5ed8b 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -447,7 +447,7 @@ sub set_default_options { }); } if (isThisFs('smbfs', $part)) { - put_in_hash($options, { 'username=' => '%' }); + add2hash_($options, { 'username=' => '%' }); } if (isFat($part) || $is_auto) { |