Module Name:    src
Committed By:   pooka
Date:           Tue Apr  9 08:00:20 UTC 2013

Modified Files:
        src/sys/compat/linux/common: linux_misc.c

Log Message:
Fix COMPAT_LINUX32.


To generate a diff of this commit:
cvs rdiff -u -r1.221 -r1.222 src/sys/compat/linux/common/linux_misc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/linux/common/linux_misc.c
diff -u src/sys/compat/linux/common/linux_misc.c:1.221 src/sys/compat/linux/common/linux_misc.c:1.222
--- src/sys/compat/linux/common/linux_misc.c:1.221	Mon Apr  8 20:54:49 2013
+++ src/sys/compat/linux/common/linux_misc.c	Tue Apr  9 08:00:20 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_misc.c,v 1.221 2013/04/08 20:54:49 pooka Exp $	*/
+/*	$NetBSD: linux_misc.c,v 1.222 2013/04/09 08:00:20 pooka Exp $	*/
 
 /*-
  * Copyright (c) 1995, 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.221 2013/04/08 20:54:49 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.222 2013/04/09 08:00:20 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1378,7 +1378,6 @@ linux_sys_getpriority(struct lwp *l, con
 
         return 0;
 }
-#endif /* !COMPAT_LINUX32 */
 
 int
 linux_sys_utimes(struct lwp *l, const struct linux_sys_utimes_args *uap, register_t *retval)
@@ -1436,3 +1435,4 @@ linux_sys_lutimes(struct lwp *l, const s
 	return do_sys_utimes(l, NULL, SCARG(uap, path), NOFOLLOW,
 	    tptr, UIO_SYSSPACE);
 }
+#endif /* !COMPAT_LINUX32 */

Reply via email to