svn commit: r193265 - head/sys/compat/linux

Dmitry Chagin dchagin at FreeBSD.org
Mon Jun 1 20:54:42 UTC 2009


Author: dchagin
Date: Mon Jun  1 20:54:41 2009
New Revision: 193265
URL: http://svn.freebsd.org/changeset/base/193265

Log:
  Add forgotten in previous commit flags argument.
  
  Approved by:	kib (mentor)
  MFC after:	1 month

Modified:
  head/sys/compat/linux/linux_socket.c

Modified: head/sys/compat/linux/linux_socket.c
==============================================================================
--- head/sys/compat/linux/linux_socket.c	Mon Jun  1 20:48:39 2009	(r193264)
+++ head/sys/compat/linux/linux_socket.c	Mon Jun  1 20:54:41 2009	(r193265)
@@ -765,7 +765,7 @@ linux_listen(struct thread *td, struct l
 
 static int
 linux_accept_common(struct thread *td, int s, l_uintptr_t addr,
-    l_uintptr_t namelen)
+    l_uintptr_t namelen, int flags)
 {
 	struct accept_args /* {
 		int	s;
@@ -822,7 +822,7 @@ linux_accept(struct thread *td, struct l
 {
 
 	return (linux_accept_common(td, args->s, args->addr,
-	    args->namelen));
+	    args->namelen, 0));
 }
 
 struct linux_accept4_args {


More information about the svn-src-all mailing list