diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-04 15:04:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-04 15:04:14 +0000 |
commit | f98aeb97dafe1e6c5818afcedbecc346ef5e900a (patch) | |
tree | 32a602ff79527687d2cb84594aadfb0499df7b2f | |
parent | cb0248b18b1f5ade05bf3cb1b5a87f18c70a2ac5 (diff) | |
download | drakx-backup-do-not-use-f98aeb97dafe1e6c5818afcedbecc346ef5e900a.tar drakx-backup-do-not-use-f98aeb97dafe1e6c5818afcedbecc346ef5e900a.tar.gz drakx-backup-do-not-use-f98aeb97dafe1e6c5818afcedbecc346ef5e900a.tar.bz2 drakx-backup-do-not-use-f98aeb97dafe1e6c5818afcedbecc346ef5e900a.tar.xz drakx-backup-do-not-use-f98aeb97dafe1e6c5818afcedbecc346ef5e900a.zip |
revert add2hash_ username=% to add2hash (it breaks diskdrake --smb not
defaulting to username=%, and i can't find out what was wrong in
auto_install's manualFstab)
-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 cf44be56b..6dc68a1a4 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -447,7 +447,7 @@ sub set_default_options { }); } if (isThisFs('smbfs', $part)) { - add2hash_($options, { 'username=' => '%' }); + add2hash($options, { 'username=' => '%' }) if !$options->{'credentials='}; } if (isFat($part) || $is_auto) { |