Mesh bug: debug infomartion showing swapped SA and DA address.

* Fix bug for "forward frame from SA(%6D), DA(%6D)" where addresses where
  swapped between SA and DA;

Approved by:	adrian (mentor)
This commit is contained in:
Monthadar Al Jaberi 2013-02-07 21:30:29 +00:00
parent 62f0748505
commit 4efafd66eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246517

View File

@ -264,8 +264,8 @@ ieee80211_start(struct ifnet *ifp)
}
IEEE80211_DPRINTF(vap, IEEE80211_MSG_OUTPUT,
"forward frame from DS SA(%6D), DA(%6D)\n",
eh->ether_dhost, ":",
eh->ether_shost, ":");
eh->ether_shost, ":",
eh->ether_dhost, ":");
ieee80211_mesh_proxy_check(vap, eh->ether_shost);
}
ni = ieee80211_mesh_discover(vap, eh->ether_dhost, m);