diff options
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/smbnfs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/smbnfs.pm b/perl-install/network/smbnfs.pm index d9b53aedb..9e587a10f 100644 --- a/perl-install/network/smbnfs.pm +++ b/perl-install/network/smbnfs.pm @@ -35,8 +35,8 @@ sub to_fullstring { $class->to_dev($e) . ($comment ? " ($comment)" : ''); } sub to_fstab_entry_raw { - my ($class, $e, $pt_type) = @_; - my $fs_entry = { device => $class->to_dev($e), pt_type => $pt_type }; + my ($class, $e, $fs_type) = @_; + my $fs_entry = { device => $class->to_dev($e), fs_type => $fs_type }; fs::set_default_options($fs_entry); $fs_entry; } |