fix get_network quote issues and update the change log

git-svn-id: svn://127.0.0.1/Perl/Net::Wireless::802_11::WPA::CLI/trunk@537 0c1c3402-1be1-de11-8092-0022686faf23
This commit is contained in:
Zane C. B-H 2011-08-19 10:53:34 +00:00
parent 286a1b8375
commit 57377f817e
2 changed files with 3 additions and 4 deletions

View File

@ -2,10 +2,13 @@ Revision history for Net-Wireless-802_11-WPA-CLI
2.1.0 2011-08-19/
-Add missing dependency to Makefile.PL.
-POD cleanup.
-get_network no longer removes quotes
-Add the methods below.
bss
scan
scan_results
get_capability
2.0.2 2011-08-18/10:40
-list_networks now properly parses the returned data.

View File

@ -445,10 +445,6 @@ sub get_network{
#remove the first line.
$returned=~s/.*\n//;
#remove ^" and "$, which will be useful for SSID and possibly some others.
$returned=~s/^"//;
$returned=~s/^#//;
return $returned;
}