diff options
author | 1999-11-05 04:25:30 +0000 | |
---|---|---|
committer | 1999-11-05 04:25:30 +0000 | |
commit | c037a92ac76bef9631f4d413a611d487d7e3da91 (patch) | |
tree | caf8ee9c5ef60da3563c0fd31bab54bab0eec83c | |
parent | Remove bogus reference to the "ANY" network string. Only the empty (diff) | |
download | wireguard-openbsd-c037a92ac76bef9631f4d413a611d487d7e3da91.tar.xz wireguard-openbsd-c037a92ac76bef9631f4d413a611d487d7e3da91.zip |
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
-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 |