Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/arch/i386/i386 Apply patch (requested by he, review...



details:   https://anonhg.NetBSD.org/src/rev/09399c9391f2
branches:  netbsd-1-5
changeset: 491913:09399c9391f2
user:      he <he%NetBSD.org@localhost>
date:      Sun Jun 17 20:41:31 2001 +0000

description:
Apply patch (requested by he, reviewed by sommerfeld):
  Fix compile problem in last pull-up.

diffstat:

 sys/arch/i386/i386/vm86.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ebf57dec23fa -r 09399c9391f2 sys/arch/i386/i386/vm86.c
--- a/sys/arch/i386/i386/vm86.c Sun Jun 17 00:26:29 2001 +0000
+++ b/sys/arch/i386/i386/vm86.c Sun Jun 17 20:41:31 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vm86.c,v 1.22.24.1 2001/06/16 19:48:49 he Exp $        */
+/*     $NetBSD: vm86.c,v 1.22.24.2 2001/06/17 20:41:31 he Exp $        */
 
 /*-
  * Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -202,7 +202,7 @@
 #endif
                sigexit(p, SIGILL);
                /* NOTREACHED */
-       } else if (sigismember(&p->p_sigctx.ps_sigignore, SIGURG)) {
+       } else if (sigismember(&p->p_sigignore, SIGURG)) {
 #ifdef DIAGNOSTIC
                printf("pid %d killed on VM86 protocol screwup (SIGURG ignored)\n",
                    p->p_pid);



Home | Main Index | Thread Index | Old Index