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

Rui Paulo rpaulo at FreeBSD.org
Thu Jul 9 18:14:08 UTC 2009


Author: rpaulo
Date: Thu Jul  9 18:14:07 2009
New Revision: 195505
URL: http://svn.freebsd.org/changeset/base/195505

Log:
  mesh_parse_meshpeering_action(): return mp, not meshpeer.
  
  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 17:56:04 2009	(r195504)
+++ projects/mesh11s/sys/net80211/ieee80211_mesh.c	Thu Jul  9 18:14:07 2009	(r195505)
@@ -1399,7 +1399,7 @@ mesh_parse_meshpeering_action(struct iee
 		}
 		return NULL;
 	}
-	return (const struct ieee80211_meshpeer_ie *) meshpeer;
+	return (const struct ieee80211_meshpeer_ie *) mp;
 }
 
 static int


More information about the svn-src-projects mailing list