diff options
author | 2000-04-21 22:48:52 +0000 | |
---|---|---|
committer | 2000-04-21 22:48:52 +0000 | |
commit | ec347736870f0fb2d45a552d5e52492a9da7de7e (patch) | |
tree | d4721d60d2a2620035f72ce4a4cb533121f38a3e | |
parent | Use fgetln(3) instead of fgets(3) when reading in the message. This (diff) | |
download | wireguard-openbsd-ec347736870f0fb2d45a552d5e52492a9da7de7e.tar.xz wireguard-openbsd-ec347736870f0fb2d45a552d5e52492a9da7de7e.zip |
oops
-rw-r--r-- | sys/arch/i386/pci/pchb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pchb.c b/sys/arch/i386/pci/pchb.c index 6aedd48b169..e520c56478b 100644 --- a/sys/arch/i386/pci/pchb.c +++ b/sys/arch/i386/pci/pchb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchb.c,v 1.7 2000/04/10 20:07:47 mickey Exp $ */ +/* $OpenBSD: pchb.c,v 1.8 2000/04/21 22:48:52 mickey Exp $ */ /* $NetBSD: pchb.c,v 1.6 1997/06/06 23:29:16 thorpej Exp $ */ /* @@ -277,7 +277,7 @@ pchb_rnd(v) sc->ax = (sc->ax << 8) + ret; else { sc->i = 4; - add_true_randomness(ret); + add_true_randomness(sc->ax); } } timeout_add(&sc->sc_tmo, 1); |