diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2009-01-08 08:15:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2009-01-08 08:15:43 +0000 |
commit | a77fbe82060bb0b00639aeb5855c64db076f01e7 (patch) | |
tree | cbe21c25143e608aa1b8215cacd94ce1c2aa271d /perl-install/fs/remote | |
parent | a185ff45425be7d41b41a0f92f0e3b7ec526e27b (diff) | |
download | drakx-a77fbe82060bb0b00639aeb5855c64db076f01e7.tar drakx-a77fbe82060bb0b00639aeb5855c64db076f01e7.tar.gz drakx-a77fbe82060bb0b00639aeb5855c64db076f01e7.tar.bz2 drakx-a77fbe82060bb0b00639aeb5855c64db076f01e7.tar.xz drakx-a77fbe82060bb0b00639aeb5855c64db076f01e7.zip |
- diskdrake:
o --smb: cifs must be used instead of smbfs (#42483)
Diffstat (limited to 'perl-install/fs/remote')
-rw-r--r-- | perl-install/fs/remote/smb.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/remote/smb.pm b/perl-install/fs/remote/smb.pm index 1399d2f62..5d16164b6 100644 --- a/perl-install/fs/remote/smb.pm +++ b/perl-install/fs/remote/smb.pm @@ -12,7 +12,7 @@ our @ISA = 'fs::remote'; sub to_fstab_entry { my ($class, $e) = @_; - my $part = $class->to_fstab_entry_raw($e, 'smbfs'); + my $part = $class->to_fstab_entry_raw($e, 'cifs'); if ($e->{server}{username}) { my ($options, $unknown) = fs::mount_options::unpack($part); $options->{"$_="} = $e->{server}{$_} foreach qw(username password domain); |