Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/hpux Fix inverted pre-processor test.



details:   https://anonhg.NetBSD.org/src/rev/9b19c9abfb3b
branches:  trunk
changeset: 534743:9b19c9abfb3b
user:      gmcgarry <gmcgarry%NetBSD.org@localhost>
date:      Fri Aug 02 08:43:09 2002 +0000

description:
Fix inverted pre-processor test.

diffstat:

 sys/compat/hpux/hpux_exec.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (30 lines):

diff -r 0d27c0dc4615 -r 9b19c9abfb3b sys/compat/hpux/hpux_exec.c
--- a/sys/compat/hpux/hpux_exec.c       Fri Aug 02 08:17:12 2002 +0000
+++ b/sys/compat/hpux/hpux_exec.c       Fri Aug 02 08:43:09 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hpux_exec.c,v 1.30 2002/07/13 08:28:40 scw Exp $       */
+/*     $NetBSD: hpux_exec.c,v 1.31 2002/08/02 08:43:09 gmcgarry Exp $  */
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hpux_exec.c,v 1.30 2002/07/13 08:28:40 scw Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hpux_exec.c,v 1.31 2002/08/02 08:43:09 gmcgarry Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -125,9 +125,9 @@
        NULL,
        NULL,
 #ifdef __HAVE_SYSCALL_INTERN
-       syscall
+       hpux_syscall_intern
 #else
-       hpux_syscall_intern
+       syscall
 #endif
 };
 



Home | Main Index | Thread Index | Old Index