svn commit: r202967 - head/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Mon Jan 25 12:23:52 UTC 2010


Author: rpaulo
Date: Mon Jan 25 12:23:51 2010
New Revision: 202967
URL: http://svn.freebsd.org/changeset/base/202967

Log:
  Call ieee80211_radiotap_rx, not ieee80211_radiotap_tx on sta_input()
  
  PR:		143163
  Submitted by:	Alexander Egorenkov <egorenar at gmail.com>
  MFC after:	3 days

Modified:
  head/sys/net80211/ieee80211_sta.c

Modified: head/sys/net80211/ieee80211_sta.c
==============================================================================
--- head/sys/net80211/ieee80211_sta.c	Mon Jan 25 12:05:51 2010	(r202966)
+++ head/sys/net80211/ieee80211_sta.c	Mon Jan 25 12:23:51 2010	(r202967)
@@ -759,7 +759,7 @@ sta_input(struct ieee80211_node *ni, str
 
 		/* copy to listener after decrypt */
 		if (ieee80211_radiotap_active_vap(vap))
-			ieee80211_radiotap_tx(vap, m);
+			ieee80211_radiotap_rx(vap, m);
 		need_tap = 0;
 
 		/*


More information about the svn-src-head mailing list