diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2008-09-01 09:03:00 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2008-09-01 09:03:00 +0000 |
commit | bbbece630a5ede0eb5272f5d863632468962a70a (patch) | |
tree | 877dd9186766f9bef4c02b5ca0ec1dfbafca24fc /sys | |
parent | 17777fbff04fc6a0a2af200f3c8458d552250bc8 (diff) |
Switch ath(4) to softcrypto to enable support for WPA/WPA2.
Tested by ckuethe@ and many users, thanks!
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/ath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c index 3192be78c75..625b96225fd 100644 --- a/sys/dev/ic/ath.c +++ b/sys/dev/ic/ath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ath.c,v 1.77 2008/08/29 11:15:32 reyk Exp $ */ +/* $OpenBSD: ath.c,v 1.78 2008/09/01 09:02:59 reyk Exp $ */ /* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */ /*- @@ -158,7 +158,7 @@ int ath_dwelltime = 200; /* 5 channels/second */ int ath_calinterval = 30; /* calibrate every 30 secs */ int ath_outdoor = AH_TRUE; /* outdoor operation */ int ath_xchanmode = AH_TRUE; /* enable extended channels */ -int ath_softcrypto = 0; /* 1=enable software crypto */ +int ath_softcrypto = 1; /* 1=enable software crypto */ struct cfdriver ath_cd = { NULL, "ath", DV_IFNET |