1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

Add missing braces.

Submitted by:	sam
MFC after:	3 days
This commit is contained in:
Rui Paulo 2010-06-10 20:40:38 +00:00
parent 2333387e05
commit dd7fc6998b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=209013

View File

@ -707,9 +707,10 @@ hwmp_recv_preq(struct ieee80211vap *vap, struct ieee80211_node *ni,
rtorig = ieee80211_mesh_rt_find(vap, preq->preq_origaddr);
if (rtorig == NULL)
rtorig = ieee80211_mesh_rt_add(vap, preq->preq_origaddr);
if (rtorig == NULL)
if (rtorig == NULL) {
/* XXX stat */
return;
}
hrorig = IEEE80211_MESH_ROUTE_PRIV(rtorig, struct ieee80211_hwmp_route);
/*
* Sequence number validation.