diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2009-07-11 16:02:06 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2009-07-11 16:02:06 +0000 |
commit | abdabf1b45c890a9ab4c7a558bc57ee7d05b815e (patch) | |
tree | bf4bb88dcf9413d67d408b5395567380f0d0d0f3 | |
parent | 8ba6464b3df7990f7197932d70676d4985739bd3 (diff) | |
download | FreeBSD-src-abdabf1b45c890a9ab4c7a558bc57ee7d05b815e.zip FreeBSD-src-abdabf1b45c890a9ab4c7a558bc57ee7d05b815e.tar.gz |
Fix something bogus deletion that got it during mesh commit.
Approved by: re (implicit)
-rw-r--r-- | sys/dev/ath/if_ath.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c index c201265..0a5787c2 100644 --- a/sys/dev/ath/if_ath.c +++ b/sys/dev/ath/if_ath.c @@ -939,6 +939,7 @@ ath_vap_create(struct ieee80211com *ic, ic_opmode = IEEE80211_M_HOSTAP; else ic_opmode = ic->ic_opmode; + break; default: device_printf(sc->sc_dev, "unknown opmode %d\n", opmode); goto bad; |