diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-04-02 08:44:58 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-04-02 08:44:58 +0000 |
commit | 153b99e6aeaee9d96342a19fa8f2a6f2bd185e20 (patch) | |
tree | 642d5e4e4bd466ae61d5461d7e09467c978baf45 /sys/dev/ic/if_wi.c | |
parent | ea7016dbf201f0731fb4a94ea916e5eeb7feee43 (diff) |
fix keyid encoding wi_tx_key
Diffstat (limited to 'sys/dev/ic/if_wi.c')
-rw-r--r-- | sys/dev/ic/if_wi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c index 602d23af9d5..f1caf2c5209 100644 --- a/sys/dev/ic/if_wi.c +++ b/sys/dev/ic/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.40 2002/04/02 06:01:44 millert Exp $ */ +/* $OpenBSD: if_wi.c,v 1.41 2002/04/02 08:44:57 markus Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -124,7 +124,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.40 2002/04/02 06:01:44 millert Exp $"; + "$OpenBSD: if_wi.c,v 1.41 2002/04/02 08:44:57 markus Exp $"; #endif /* lint */ #ifdef foo @@ -1628,7 +1628,7 @@ wi_do_hostencrypt(struct wi_softc *sc, caddr_t buf, int len) dat[0] = key[0]; dat[1] = key[1]; dat[2] = key[2]; - dat[3] = sc->wi_tx_key % 4; + dat[3] = sc->wi_tx_key << 6; /* pad and keyid */ dat += 4; /* compute rc4 over data, crc32 over data */ |