From 35c9740537cc97384a7199dc3c27b05ee9cad936 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Sat, 17 Feb 2018 02:53:35 +0100 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- modules/wifi_recon.go | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/wifi_recon.go b/modules/wifi_recon.go index b2b1bd32..2690a0c2 100644 --- a/modules/wifi_recon.go +++ b/modules/wifi_recon.go @@ -178,6 +178,7 @@ func (w *WiFiRecon) getRow(station *WiFiStation) []string { } func mhz2chan(freq int) int { + // ambo! if freq <= 2484 { return ((freq - 2412) / 5) + 1 }