diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2020-05-23 08:42:52 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2020-05-23 08:42:52 +0000 |
commit | 014aaff8e6924f89729fc3b3a0763b2e1a6da44d (patch) | |
tree | 3884961935566165eb69cbef5aa9d89bfe177dd7 /sys/dev/ic | |
parent | 04c6412ca7f8ff67dd4612aad76626f0a1fb6e3e (diff) |
Fix typo in a comment that originated in wpi(4) and has spread elsewhere.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/ar5008.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ar5008.c b/sys/dev/ic/ar5008.c index 79d4d9c7ac7..3a28d87bc88 100644 --- a/sys/dev/ic/ar5008.c +++ b/sys/dev/ic/ar5008.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5008.c,v 1.58 2020/05/15 14:21:08 stsp Exp $ */ +/* $OpenBSD: ar5008.c,v 1.59 2020/05/23 08:42:50 stsp Exp $ */ /*- * Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr> @@ -818,7 +818,7 @@ ar5008_ccmp_decap(struct athn_softc *sc, struct mbuf *m, struct ieee80211_node * IEEE80211_AID(ni->ni_associd)) return 1; - /* Check that ExtIV bit is be set. */ + /* Check that ExtIV bit is set. */ if (!(ivp[3] & IEEE80211_WEP_EXTIV)) return 1; |