Adjust for change in 'struct sysent'. From Alexander Holupirek.
authorkettenis <kettenis@openbsd.org>
Sun, 3 Aug 2008 21:31:53 +0000 (21:31 +0000)
committerkettenis <kettenis@openbsd.org>
Sun, 3 Aug 2008 21:31:53 +0000 (21:31 +0000)
Fixes PR 5898.

share/lkm/misc/module/miscmod.c
share/lkm/syscall/module/newsyscall.c

index 0677772..7a5cb73 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: miscmod.c,v 1.3 2000/03/02 14:46:36 todd Exp $        */
+/*     $OpenBSD: miscmod.c,v 1.4 2008/08/03 21:31:53 kettenis Exp $    */
 /*
  * Makefile for miscmod
  *
@@ -55,7 +55,7 @@ extern int    misccall();
  * have 0 arguments to our system call.
  */
 static struct sysent newent = {
-       0, 0,   misccall                /* # of args, args size, fn pointer*/
+       0, 0, 0, misccall       /* # of args, args size, flags, fn pointer*/
 };
 
 /*
index 2078567..ad991d3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: newsyscall.c,v 1.2 2000/03/02 14:46:38 todd Exp $     */
+/*     $OpenBSD: newsyscall.c,v 1.3 2008/08/03 21:31:53 kettenis Exp $ */
 /*
  * Makefile for newsyscall
  *
@@ -54,7 +54,7 @@ extern int    mycall();
  * have 0 arguments to our system call.
  */
 static struct sysent newent = {
-       0, 0,   mycall                  /* # of args, args size, fn. pointer */
+       0, 0, 0, mycall         /* # of args, args size, flags, fn. pointer */
 };
 
 MOD_SYSCALL( "newsyscall", -1, &newent)