diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-05 07:47:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-05 07:47:36 +0000 |
commit | 0a23f36bd52f14f68cc394c37ef7a9af0c406caa (patch) | |
tree | 96cf9a72f416f0c2175055e43e1fbe2e3918ef1b /perl-install/network/smbnfs.pm | |
parent | 51fd51c2f560620d0e5c73a824d7677661f9c385 (diff) | |
download | drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar.gz drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar.bz2 drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar.xz drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.zip |
big renaming of field {type} to {pt_type},
this will allow defining {fs_type} which will always be a string
whereas {pt_type} will always be a number
Diffstat (limited to 'perl-install/network/smbnfs.pm')
-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 97f2bd6e6..d9b53aedb 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, $type) = @_; - my $fs_entry = { device => $class->to_dev($e), type => $type }; + my ($class, $e, $pt_type) = @_; + my $fs_entry = { device => $class->to_dev($e), pt_type => $pt_type }; fs::set_default_options($fs_entry); $fs_entry; } |