| Issue 1: | kisgearth doesn't show correct color for wep networks |
1 of 7
Next ›
|
| 2 people starred this issue and may be notified of changes. | Back to list |
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;
Nov 30, 2008
Project Member
#1
richard....@gmail.com
Nov 30, 2008
(No comment was entered for this change.)
Status:
Accepted
Labels: OpSys-All
Dec 20, 2008
(No comment was entered for this change.)
Owner:
boris.choinka
Feb 25, 2009
(No comment was entered for this change.)
Labels:
-Priority-Medium Priority-High
Jan 29, 2010
(No comment was entered for this change.)
Owner:
richard.sammet
Cc: -richard.sammet |