summaryrefslogtreecommitdiffstats
path: root/perl-install/network
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/network')
-rw-r--r--perl-install/network/tools.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm
index bf1508a4b..f9957577e 100644
--- a/perl-install/network/tools.pm
+++ b/perl-install/network/tools.pm
@@ -200,8 +200,7 @@ sub convert_wep_key_for_iwconfig {
#- else consider the key as hexadecimal, do not strip dashes
#- always quote the key as string
my ($key) = @_;
- unquotify \$key;
- member(length($key), (5, 13)) ? qq("s:$key") : qq("$key");
+ member(length($key), (5, 13)) ? "s:$key" : "$key";
}
sub get_wep_key_from_iwconfig {