Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 May 2014 14:19:15 +0000 (UTC)
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r265192 - user/dchagin/lemul/sys/i386/linux
Message-ID:  <201405011419.s41EJFDr079110@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dchagin
Date: Thu May  1 14:19:14 2014
New Revision: 265192
URL: http://svnweb.freebsd.org/changeset/base/265192

Log:
  Add forgotten in r265179 linux_common_execve() call to the i386.

Modified:
  user/dchagin/lemul/sys/i386/linux/linux_machdep.c

Modified: user/dchagin/lemul/sys/i386/linux/linux_machdep.c
==============================================================================
--- user/dchagin/lemul/sys/i386/linux/linux_machdep.c	Thu May  1 14:09:47 2014	(r265191)
+++ user/dchagin/lemul/sys/i386/linux/linux_machdep.c	Thu May  1 14:19:14 2014	(r265192)
@@ -141,7 +141,7 @@ linux_execve(struct thread *td, struct l
 	    args->argp, args->envp);
 	free(newpath, M_TEMP);
 	if (error == 0)
-		error = kern_execve(td, &eargs, NULL);
+		error = linux_common_execve(td, &eargs);
 	return (error);
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405011419.s41EJFDr079110>