diff options
author | 2000-09-21 15:52:47 +0000 | |
---|---|---|
committer | 2000-09-21 15:52:47 +0000 | |
commit | 4df97cb19f220199fd32fbd1d1a495c5e544ce35 (patch) | |
tree | 4952b5964b67e1683fa5d301bf0301229ad8fea8 | |
parent | Fix man pages for good. (diff) | |
download | wireguard-openbsd-4df97cb19f220199fd32fbd1d1a495c5e544ce35.tar.xz wireguard-openbsd-4df97cb19f220199fd32fbd1d1a495c5e544ce35.zip |
oops forgot the other case in the pmsintr for add_mouse_randomness() call
-rw-r--r-- | sys/arch/i386/isa/pms.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pms.c b/sys/arch/i386/isa/pms.c index bd709cbbcb0..78f16e35fc1 100644 --- a/sys/arch/i386/isa/pms.c +++ b/sys/arch/i386/isa/pms.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pms.c,v 1.26 2000/05/16 18:12:14 mickey Exp $ */ +/* $OpenBSD: pms.c,v 1.27 2000/09/21 15:52:47 mickey Exp $ */ /* $NetBSD: pms.c,v 1.29 1996/05/12 23:12:42 mycroft Exp $ */ /*- @@ -569,6 +569,7 @@ pmsintr(arg) } else { buffer[0] = inb(PMS_DATA); (void) b_to_q(buffer, 1, &sc->sc_q); + add_mouse_randomness(*(u_int32_t*)buffer); if (sc->sc_state & PMS_ASLP) { sc->sc_state &= ~PMS_ASLP; |