diff options
author | 2007-07-18 19:24:21 +0000 | |
---|---|---|
committer | 2007-07-18 19:24:21 +0000 | |
commit | 65b39e7123bb0e4c5f86b327f79bad3f62c05b2e (patch) | |
tree | 79af04bfd02483b6c3260fe2202629284521935e | |
parent | move the processing of the pause attribute to the end of audiosetinfo(), (diff) | |
download | wireguard-openbsd-65b39e7123bb0e4c5f86b327f79bad3f62c05b2e.tar.xz wireguard-openbsd-65b39e7123bb0e4c5f86b327f79bad3f62c05b2e.zip |
unbreak build.
pointed out by mglocker@
-rw-r--r-- | sys/dev/ic/acx100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/acx100.c b/sys/dev/ic/acx100.c index 8115121b521..bc1f1110b2b 100644 --- a/sys/dev/ic/acx100.c +++ b/sys/dev/ic/acx100.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx100.c,v 1.19 2007/07/18 18:10:31 damien Exp $ */ +/* $OpenBSD: acx100.c,v 1.20 2007/07/18 19:24:21 damien Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -692,7 +692,7 @@ acx100_set_wepkey(struct acx_softc *sc, struct ieee80211_key *k, int k_idx) if (k->k_len > ACX100_WEPKEY_LEN) { printf("%s: %dth WEP key size beyond %d\n", - ifp->if_xname, wk_idx, ACX100_WEPKEY_LEN); + ifp->if_xname, k_idx, ACX100_WEPKEY_LEN); return EINVAL; } |