diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-01-10 17:43:39 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-01-10 17:43:39 +0000 |
commit | c9b28123704b16d81a458b41ce97bce80d325613 (patch) | |
tree | 8b9659123717674a880172eb5e6da3130058b96e /sys/dev | |
parent | b888ec3121eb61da6eb8126d62986726b837014b (diff) |
BSS mode by default.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pcmcia/if_wi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_wi.c b/sys/dev/pcmcia/if_wi.c index b71504be7d7..5a41c2b8933 100644 --- a/sys/dev/pcmcia/if_wi.c +++ b/sys/dev/pcmcia/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.17 2000/11/08 14:25:24 art Exp $ */ +/* $OpenBSD: if_wi.c,v 1.18 2001/01/10 17:43:38 angelos Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -133,7 +133,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.17 2000/11/08 14:25:24 art Exp $"; + "$OpenBSD: if_wi.c,v 1.18 2001/01/10 17:43:38 angelos Exp $"; #endif /* lint */ #ifdef foo @@ -280,7 +280,7 @@ wi_pcmcia_attach(parent, self, aux) sizeof(WI_DEFAULT_IBSS) - 1); sc->wi_portnum = WI_DEFAULT_PORT; - sc->wi_ptype = WI_PORTTYPE_ADHOC; + sc->wi_ptype = WI_PORTTYPE_BSS; sc->wi_ap_density = WI_DEFAULT_AP_DENSITY; sc->wi_rts_thresh = WI_DEFAULT_RTS_THRESH; sc->wi_tx_rate = WI_DEFAULT_TX_RATE; |