From 075a6782644dddbdbe101d01063ef4ede31ac07c Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Fri, 29 Feb 2008 01:15:02 +0000 Subject: remove unneeded quotes --- lib/network/connection/wireless.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/network') diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index dc24756..34db543 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -956,7 +956,7 @@ sub wpa_supplicant_add_eap_network { #Handle also quoting #Do not define if blank, the save routine will delete entry from file next if $ui_input->{$mykey} eq ""; - $network->{$myone} = $myeap_vars->{$myone} == 2 ? qq("$ui_input->{$mykey}") : "$ui_input->{$mykey}"; + $network->{$myone} = $myeap_vars->{$myone} == 2 ? qq("$ui_input->{$mykey}") : $ui_input->{$mykey}; } } #handle eapextra as final overides @@ -964,7 +964,7 @@ sub wpa_supplicant_add_eap_network { #Should split it on what the # sign? foreach my $myone (split('#', $ui_input->{eapextra})) { ($mykey, $myval) = split('=', $myone, 2); - $network->{$mykey} = "$myval"; + $network->{$mykey} = $myval; } } #final fixes -- cgit v1.2.1