From 0ac551ba1f6be91bc213f2965d93d62a8087c956 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 26 Jul 2004 03:44:21 +0000 Subject: remove unneeded quotes --- perl-install/network/tools.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index f9957577e..57cf647ea 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -200,7 +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) = @_; - member(length($key), (5, 13)) ? "s:$key" : "$key"; + member(length($key), (5, 13)) ? "s:$key" : $key; } sub get_wep_key_from_iwconfig { -- cgit v1.2.1