From cb93f4ab64f00099c3c2ae913243efee9936c471 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sat, 22 Jun 2002 16:41:44 +0000 Subject: Fix typo in WI_FLAGS_HAS_ROAMING, noticed by fgs@ --- sys/dev/ic/if_wivar.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/sys/dev/ic/if_wivar.h b/sys/dev/ic/if_wivar.h index ab6de5e97f3..3003da045bc 100644 --- a/sys/dev/ic/if_wivar.h +++ b/sys/dev/ic/if_wivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wivar.h,v 1.15 2002/06/21 06:48:18 deraadt Exp $ */ +/* $OpenBSD: if_wivar.h,v 1.16 2002/06/22 16:41:43 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -110,15 +110,15 @@ struct wi_softc { }; /* Values for wi_flags. */ -#define WI_FLAGS_ATTACHED 0x01 -#define WI_FLAGS_INITIALIZED 0x02 -#define WI_FLAGS_HAS_WEP 0x04 -#define WI_FLAGS_HAS_IBSS 0x08 -#define WI_FLAGS_HAS_CREATE_IBSS 0x10 -#define WI_FLAGS_HAS_MOR 0x20 -#define WI_FLAGS_HAS_ROAMING 0x30 -#define WI_FLAGS_HAS_DIVERSITY 0x40 -#define WI_FLAGS_HAS_HOSTAP 0x80 +#define WI_FLAGS_ATTACHED 0x0001 +#define WI_FLAGS_INITIALIZED 0x0002 +#define WI_FLAGS_HAS_WEP 0x0004 +#define WI_FLAGS_HAS_IBSS 0x0008 +#define WI_FLAGS_HAS_CREATE_IBSS 0x0010 +#define WI_FLAGS_HAS_MOR 0x0020 +#define WI_FLAGS_HAS_ROAMING 0x0040 +#define WI_FLAGS_HAS_DIVERSITY 0x0080 +#define WI_FLAGS_HAS_HOSTAP 0x0100 /* Firmware types */ #define WI_LUCENT 0 -- cgit v1.2.3