svn commit: r265192 - user/dchagin/lemul/sys/i386/linux

Dmitry Chagin dchagin at FreeBSD.org
Thu May 1 14:19:15 UTC 2014


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);
 }
 


More information about the svn-src-user mailing list