Issue 1: kisgearth doesn't show correct color for wep networks
Project Member Reported by richard....@gmail.com, Nov 30, 2008
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
added on behalf of: Bartos-Elekes Zsolt <muszi@kite.hu>
Nov 30, 2008
Project Member #2 richard....@gmail.com
(No comment was entered for this change.)
Status: Accepted
Labels: OpSys-All
Dec 20, 2008
Project Member #3 richard....@gmail.com
(No comment was entered for this change.)
Owner: boris.choinka
Feb 25, 2009
Project Member #4 richard....@gmail.com
(No comment was entered for this change.)
Labels: -Priority-Medium Priority-High
Jan 29, 2010
Project Member #5 richard....@gmail.com
 Issue 5  has been merged into this issue.
Cc: richard.sammet
Jan 29, 2010
Project Member #6 richard....@gmail.com
(No comment was entered for this change.)
Owner: richard.sammet
Cc: -richard.sammet