diff options
author | 2007-08-11 16:22:37 +0000 | |
---|---|---|
committer | 2007-08-11 16:22:37 +0000 | |
commit | 91222c78ac1db48ad8d048eaca8dd788faa4f897 (patch) | |
tree | a95ebc6d43eb154f439c3b4c88fc8ca258bc6e2e | |
parent | tweak previous: (diff) | |
download | wireguard-openbsd-91222c78ac1db48ad8d048eaca8dd788faa4f897.tar.xz wireguard-openbsd-91222c78ac1db48ad8d048eaca8dd788faa4f897.zip |
Remove IBSS capability flag for now.
-rw-r--r-- | sys/dev/pcmcia/if_malo.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/pcmcia/if_malo.c b/sys/dev/pcmcia/if_malo.c index 9c2a1fa9108..d9b6ed8bec3 100644 --- a/sys/dev/pcmcia/if_malo.c +++ b/sys/dev/pcmcia/if_malo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_malo.c,v 1.51 2007/08/10 14:31:57 mglocker Exp $ */ +/* $OpenBSD: if_malo.c,v 1.52 2007/08/11 16:22:37 mglocker Exp $ */ /* * Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org> @@ -300,10 +300,7 @@ cmalo_attach(void *arg) ic->ic_opmode = IEEE80211_M_STA; ic->ic_state = IEEE80211_S_INIT; - ic->ic_caps = - IEEE80211_C_MONITOR | - IEEE80211_C_IBSS | - IEEE80211_C_WEP; + ic->ic_caps = IEEE80211_C_MONITOR | IEEE80211_C_WEP; ic->ic_sup_rates[IEEE80211_MODE_11B] = ieee80211_std_rateset_11b; ic->ic_sup_rates[IEEE80211_MODE_11G] = ieee80211_std_rateset_11g; |