diff options
| author | Adrian Chadd <adrian@FreeBSD.org> | 2015-09-22 06:34:07 +0000 |
|---|---|---|
| committer | Adrian Chadd <adrian@FreeBSD.org> | 2015-09-22 06:34:07 +0000 |
| commit | 0cf00015be945b30225163bf39a11dde2bc3661b (patch) | |
| tree | e4c0e0460c4047d26b157947e3237b52ac88d97e /sys/dev/mwl | |
| parent | 44369387a1304b3619bb2acbdb3a63ff5fb549c8 (diff) | |
Notes
Diffstat (limited to 'sys/dev/mwl')
| -rw-r--r-- | sys/dev/mwl/if_mwl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mwl/if_mwl.c b/sys/dev/mwl/if_mwl.c index bd2b59c45ac0..463b5c9c1586 100644 --- a/sys/dev/mwl/if_mwl.c +++ b/sys/dev/mwl/if_mwl.c @@ -1834,10 +1834,10 @@ mwl_beacon_setup(struct ieee80211vap *vap) { struct mwl_hal_vap *hvap = MWL_VAP(vap)->mv_hvap; struct ieee80211_node *ni = vap->iv_bss; - struct ieee80211_beacon_offsets bo; + struct ieee80211_beacon_offsets *bo = &vap->iv_bcn_off; struct mbuf *m; - m = ieee80211_beacon_alloc(ni, &bo); + m = ieee80211_beacon_alloc(ni, bo); if (m == NULL) return ENOBUFS; mwl_hal_setbeacon(hvap, mtod(m, const void *), m->m_len); |
