diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-02-03 12:49:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-02-03 12:49:04 +0000 |
commit | cb5d8c0fa1e3cf6632dc06ee22fc94b847de1866 (patch) | |
tree | 56d5dd8fc821605b2d50e8c94cd62b99b1fc0f04 /sys/arch/hp300 | |
parent | 169aeda2a946b41c887feafbe439a80b3e669648 (diff) |
repair confusion over kv/uv addr for siginfo_t storage
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/hp300/machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hp300/hp300/machdep.c b/sys/arch/hp300/hp300/machdep.c index 1276fa31b8e..8a11216119d 100644 --- a/sys/arch/hp300/hp300/machdep.c +++ b/sys/arch/hp300/hp300/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.12 1997/02/03 04:47:58 downsj Exp $ */ +/* $OpenBSD: machdep.c,v 1.13 1997/02/03 12:48:46 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.77 1996/12/11 16:49:23 thorpej Exp $ */ /* @@ -913,8 +913,8 @@ sendsig(catcher, sig, mask, code, type, val) kfp->sf_sc.sc_ps = frame->f_sr; if (psp->ps_siginfo & sigmask(sig)) { - kfp->sf_sip = &kfp->sf_si; - initsiginfo(kfp->sf_sip, sig, code, type, val); + kfp->sf_sip = &fp->sf_si; + initsiginfo(&kfp->sf_si, sig, code, type, val); } #ifdef COMPAT_HPUX |