svn commit: r195504 - projects/mesh11s/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Thu Jul 9 17:56:05 UTC 2009


Author: rpaulo
Date: Thu Jul  9 17:56:04 2009
New Revision: 195504
URL: http://svn.freebsd.org/changeset/base/195504

Log:
  Fix another case of localid == 0.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/net80211/ieee80211_mesh.c

Modified: projects/mesh11s/sys/net80211/ieee80211_mesh.c
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_mesh.c	Thu Jul  9 16:59:29 2009	(r195503)
+++ projects/mesh11s/sys/net80211/ieee80211_mesh.c	Thu Jul  9 17:56:04 2009	(r195504)
@@ -1573,8 +1573,8 @@ mesh_recv_action_meshpeering_confirm(str
 		break;
 	case IEEE80211_NODE_MESH_CONFIRMRCV:
 		if (ni->ni_mllid != meshpeer->peer_llinkid) {
-			args[0] = ni->ni_mllid;
-			args[1] = ni->ni_mlpid;
+			args[0] = ni->ni_mlpid;
+			args[1] = ni->ni_mllid;
 			args[2] = IEEE80211_REASON_PEER_LINK_CANCELED;
 			ieee80211_send_action(ni,
 			    IEEE80211_ACTION_CAT_MESHPEERING,


More information about the svn-src-projects mailing list