diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-23 16:22:58 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-23 16:22:58 +0000 |
commit | da1dcf9319d3dfc0bbd8c1cef7960fcb0f43976e (patch) | |
tree | 1ad2a5a931009339daaf4ed2d5beef4673711008 /sys | |
parent | aa2610c955e299c114010ce593279ca5e5df944e (diff) |
Sync with NetBSD 970118, missed...
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/ibcs2/Makefile | 3 | ||||
-rw-r--r-- | sys/compat/ibcs2/ibcs2_socksys.c | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sys/compat/ibcs2/Makefile b/sys/compat/ibcs2/Makefile index f5270de19be..362413423f2 100644 --- a/sys/compat/ibcs2/Makefile +++ b/sys/compat/ibcs2/Makefile @@ -1,4 +1,5 @@ -# $OpenBSD: Makefile,v 1.1 1996/08/02 20:35:01 niklas Exp $ +# $OpenBSD: Makefile,v 1.2 1997/01/23 16:22:56 niklas Exp $ +# $NetBSD: Makefile,v 1.1 1996/09/03 03:18:12 mycroft Exp $ DEP= syscalls.conf syscalls.master ../../kern/makesyscalls.sh OBJS= ibcs2_sysent.c ibcs2_syscalls.c ibcs2_syscall.h ibcs2_syscallargs.h diff --git a/sys/compat/ibcs2/ibcs2_socksys.c b/sys/compat/ibcs2/ibcs2_socksys.c index 0b4668124ad..21e096e7f59 100644 --- a/sys/compat/ibcs2/ibcs2_socksys.c +++ b/sys/compat/ibcs2/ibcs2_socksys.c @@ -1,5 +1,5 @@ -/* $OpenBSD: ibcs2_socksys.c,v 1.4 1997/01/23 16:12:19 niklas Exp $ */ -/* $NetBSD: ibcs2_socksys.c,v 1.4 1996/05/03 17:05:29 christos Exp $ */ +/* $OpenBSD: ibcs2_socksys.c,v 1.5 1997/01/23 16:22:57 niklas Exp $ */ +/* $NetBSD: ibcs2_socksys.c,v 1.7 1996/10/13 00:46:51 christos Exp $ */ /* * Copyright (c) 1994, 1995 Scott Bartram @@ -131,8 +131,8 @@ ibcs2_socksys(p, v, retval) default: printf("socksys unknown %08x %08x %08x %08x %08x %08x %08x\n", - realargs[0], realargs[1], realargs[2], realargs[3], - realargs[4], realargs[5], realargs[6]); + realargs[0], realargs[1], realargs[2], realargs[3], + realargs[4], realargs[5], realargs[6]); return EINVAL; } /* NOTREACHED */ |