Module Name: src
Committed By: plunky
Date: Tue Mar 29 20:10:32 UTC 2011
Modified Files:
src/sys/compat/linux/arch/i386: linux_exec_machdep.c
Log Message:
tidy up include pathname to exclude undefined behaviour
"If the characters ', \, ", //, or /* occur in the sequence between
the < and > delimiters, the behavior is undefined."
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 \
src/sys/compat/linux/arch/i386/linux_exec_machdep.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/arch/i386/linux_exec_machdep.c
diff -u src/sys/compat/linux/arch/i386/linux_exec_machdep.c:1.16 src/sys/compat/linux/arch/i386/linux_exec_machdep.c:1.17
--- src/sys/compat/linux/arch/i386/linux_exec_machdep.c:1.16 Wed Jul 7 01:30:34 2010
+++ src/sys/compat/linux/arch/i386/linux_exec_machdep.c Tue Mar 29 20:10:31 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_exec_machdep.c,v 1.16 2010/07/07 01:30:34 chs Exp $ */
+/* $NetBSD: linux_exec_machdep.c,v 1.17 2011/03/29 20:10:31 plunky Exp $ */
/*-
* Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_exec_machdep.c,v 1.16 2010/07/07 01:30:34 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_exec_machdep.c,v 1.17 2011/03/29 20:10:31 plunky Exp $");
#if defined(_KERNEL_OPT)
#include "opt_vm86.h"
@@ -68,7 +68,7 @@
#include <compat/linux/common/linux_hdio.h>
#include <compat/linux/common/linux_exec.h>
#include <compat/linux/common/linux_errno.h>
-#include <compat/linux//linux_syscallargs.h>
+#include <compat/linux/linux_syscallargs.h>
int
linux_exec_setup_stack(struct lwp *l, struct exec_package *epp)