svn commit: r285399 - head/sys/compat/cloudabi

Ed Schouten ed at FreeBSD.org
Sat Jul 11 18:39:17 UTC 2015


Author: ed
Date: Sat Jul 11 18:39:16 2015
New Revision: 285399
URL: https://svnweb.freebsd.org/changeset/base/285399

Log:
  Add missing function parameter.
  
  A function parameter got added in r285356, meaning that the call to
  kern_dup() needs to be patched up.

Modified:
  head/sys/compat/cloudabi/cloudabi_fd.c

Modified: head/sys/compat/cloudabi/cloudabi_fd.c
==============================================================================
--- head/sys/compat/cloudabi/cloudabi_fd.c	Sat Jul 11 18:09:27 2015	(r285398)
+++ head/sys/compat/cloudabi/cloudabi_fd.c	Sat Jul 11 18:39:16 2015	(r285399)
@@ -76,7 +76,7 @@ int
 cloudabi_sys_fd_dup(struct thread *td, struct cloudabi_sys_fd_dup_args *uap)
 {
 
-	return (kern_dup(td, 0, uap->from, 0));
+	return (kern_dup(td, 0, 0, uap->from, 0));
 }
 
 int


More information about the svn-src-head mailing list