sys/net8021: Add missing braces in setcurchan().
Obtained from: DragonFlyBSD (git c69e37d6) MFC after: 3 days
This commit is contained in:
parent
f41e0df406
commit
d2ffc7af30
@ -2014,9 +2014,10 @@ setcurchan(struct ieee80211vap *vap, struct ieee80211_channel *c)
|
||||
/* XXX need state machine for other vap's to follow */
|
||||
ieee80211_setcurchan(ic, vap->iv_des_chan);
|
||||
vap->iv_bss->ni_chan = ic->ic_curchan;
|
||||
} else
|
||||
} else {
|
||||
ic->ic_curchan = vap->iv_des_chan;
|
||||
ic->ic_rt = ieee80211_get_ratetable(ic->ic_curchan);
|
||||
}
|
||||
} else {
|
||||
/*
|
||||
* Need to go through the state machine in case we
|
||||
|
@ -2630,7 +2630,7 @@ mesh_recv_action_meshgate(struct ieee80211_node *ni,
|
||||
/* popagate only if decremented ttl >= 1 && forwarding is enabled */
|
||||
if ((ie.gann_ttl - 1) < 1 && !(ms->ms_flags & IEEE80211_MESHFLAGS_FWD))
|
||||
return 0;
|
||||
pgann.gann_flags = ie.gann_flags; /* Reserved */
|
||||
pgann.gann_flags = ie.gann_flags; /* Reserved */
|
||||
pgann.gann_hopcount = ie.gann_hopcount + 1;
|
||||
pgann.gann_ttl = ie.gann_ttl - 1;
|
||||
IEEE80211_ADDR_COPY(pgann.gann_addr, ie.gann_addr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user