New issue 1 by richard.sammet: kisgearth doesn't show correct color for wep
networks
http://code.google.com/p/kisgearth/issues/detail?id=1
I really enjoy kisgearth, but I found a bug: it doesn't show correct color
for WEP-only encrypted networks when color-coding based on encryption (it
shows the unencrypted color). Here is a patch to fix it:
--- kisgearth.pl.orig 2008-08-28 19:39:18.000000000 +0200
+++ kisgearth.pl 2008-09-15 09:09:37.000000000 +0200
@@ -1427,7 +1427,7 @@
$net_color = $GREEN;
}elsif(grep(/TKIP/i, @{$networks[$tmp_count]->nencryption}) == 1) {
$net_color = $YELLOW;
- }elsif(grep(/WEP/i, @{$networks[$tmp_count]->nencryption}) == 1) {
+ }elsif ($networks[$tmp_count]->nwep eq "true") {
$net_color = $ORANGE;
}else{
$net_color = $RED;
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
added on behalf of: Bartos-Elekes Zsolt <mu...@kite.hu>
Comment #2 on issue 1 by richard.sammet: kisgearth doesn't show correct
color for wep networks
http://code.google.com/p/kisgearth/issues/detail?id=1
(No comment was entered for this change.)