diff options
author | sam <sam@FreeBSD.org> | 2005-01-24 20:39:29 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2005-01-24 20:39:29 +0000 |
commit | c504db8755ba79bafc832f7a44a04f1c92b6d2c9 (patch) | |
tree | 979acb82d13aa80680c2546e0b6ca77c87952945 /sys/net80211/ieee80211_proto.c | |
parent | d07ff12dc96a1f4b81be04db2b5826024cd873d1 (diff) | |
download | FreeBSD-src-c504db8755ba79bafc832f7a44a04f1c92b6d2c9.zip FreeBSD-src-c504db8755ba79bafc832f7a44a04f1c92b6d2c9.tar.gz |
noop change so RUN->RUN transition isn't considered invalid
(it happens on ibss merge)
Diffstat (limited to 'sys/net80211/ieee80211_proto.c')
-rw-r--r-- | sys/net80211/ieee80211_proto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_proto.c b/sys/net80211/ieee80211_proto.c index 0c7672d..8977f01 100644 --- a/sys/net80211/ieee80211_proto.c +++ b/sys/net80211/ieee80211_proto.c @@ -1010,9 +1010,10 @@ ieee80211_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg break; /* fall thru... */ case IEEE80211_S_AUTH: - case IEEE80211_S_RUN: IEEE80211_DPRINTF(ic, IEEE80211_MSG_ANY, "%s: invalid transition\n", __func__); + /* fall thru... */ + case IEEE80211_S_RUN: break; case IEEE80211_S_SCAN: /* adhoc/hostap mode */ case IEEE80211_S_ASSOC: /* infra mode */ |