From 1857a62645551cbbf1355de38bdd9ae831794a04 Mon Sep 17 00:00:00 2001 From: evilsocket Date: Tue, 6 Mar 2018 17:24:36 +0100 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- modules/wifi_recon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wifi_recon.go b/modules/wifi_recon.go index b56bc57e..aadd4428 100644 --- a/modules/wifi_recon.go +++ b/modules/wifi_recon.go @@ -635,8 +635,8 @@ func (w *WiFiRecon) Start() error { w.discoverProbes(radiotap, dot11, packet) w.discoverAccessPoints(radiotap, dot11, packet) - w.updateStats(dot11, packet) w.discoverClients(radiotap, dot11, packet) + w.updateStats(dot11, packet) } } })