diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-11-05 04:25:31 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-11-05 04:25:31 +0000 |
commit | 5ccf78f30b403abdbf97090cedb45b18f6ed5365 (patch) | |
tree | d036b7b941dc6ce963e453908fb1753836356b83 /sys/dev | |
parent | 2d2388f540dfa611e5d55327f835b3c4b6c2decc (diff) |
The default network name is not "ANY", it's the empty string. I've
noticed that through personal use, double checked with NetBSD if_wireg.h
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pcmcia/if_wireg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pcmcia/if_wireg.h b/sys/dev/pcmcia/if_wireg.h index f65c0a4057d..d9c72d758d5 100644 --- a/sys/dev/pcmcia/if_wireg.h +++ b/sys/dev/pcmcia/if_wireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wireg.h,v 1.3 1999/08/08 15:18:59 niklas Exp $ */ +/* $OpenBSD: if_wireg.h,v 1.4 1999/11/05 04:25:30 angelos Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -112,7 +112,7 @@ struct wi_softc { #define WI_DEFAULT_TX_RATE 3 /* Default network name: ANY */ -#define WI_DEFAULT_NETNAME "ANY" +#define WI_DEFAULT_NETNAME "" #define WI_DEFAULT_AP_DENSITY 1 |