diff options
author | imp <imp@FreeBSD.org> | 2002-05-20 19:33:49 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-05-20 19:33:49 +0000 |
commit | caf5f38789241ea295dae2dd1168d7f54a123a77 (patch) | |
tree | 1a9f5d34f310841c4307646fabf7a9936fb45947 | |
parent | a4a680304c98d93eef7fb38ab24eea03cd91b3ec (diff) | |
download | FreeBSD-src-caf5f38789241ea295dae2dd1168d7f54a123a77.zip FreeBSD-src-caf5f38789241ea295dae2dd1168d7f54a123a77.tar.gz |
Use correct inactivity timeout of 2 minutes rather than 24 seconds due to
bogons introduced at some point.
Submitted by: thomas skibo
-rw-r--r-- | sys/dev/wi/wi_hostap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wi/wi_hostap.h b/sys/dev/wi/wi_hostap.h index d54ef3a..4fccd20 100644 --- a/sys/dev/wi/wi_hostap.h +++ b/sys/dev/wi/wi_hostap.h @@ -118,7 +118,7 @@ struct wihap_info { }; #define WIHAP_INTERVAL 5 -#define WIHAP_DFLT_INACTIVITY_TIME (120/WIHAP_INTERVAL) /* 2 minutes */ +#define WIHAP_DFLT_INACTIVITY_TIME 120 /* 2 minutes */ struct wi_softc; struct wi_frame; |