Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Oct 2009 23:18:40 +0000 (UTC)
From:      Kip Macy <kmacy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r197722 - user/kmacy/releng_8_fcs/sys/compat/freebsd32
Message-ID:  <200910022318.n92NIejc016753@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kmacy
Date: Fri Oct  2 23:18:40 2009
New Revision: 197722
URL: http://svn.freebsd.org/changeset/base/197722

Log:
  fix interface compatibility

Modified:
  user/kmacy/releng_8_fcs/sys/compat/freebsd32/freebsd32_misc.c

Modified: user/kmacy/releng_8_fcs/sys/compat/freebsd32/freebsd32_misc.c
==============================================================================
--- user/kmacy/releng_8_fcs/sys/compat/freebsd32/freebsd32_misc.c	Fri Oct  2 22:30:44 2009	(r197721)
+++ user/kmacy/releng_8_fcs/sys/compat/freebsd32/freebsd32_misc.c	Fri Oct  2 23:18:40 2009	(r197722)
@@ -2137,7 +2137,8 @@ freebsd32_do_sendfile(struct thread *td,
 		}
 	}
 
-	error = kern_sendfile(td, &ap, hdr_uio, trl_uio, compat);
+	error = kern_sendfile(td, &ap, hdr_uio, trl_uio, compat,
+	    NULL, NULL, NULL);
 out:
 	if (hdr_uio)
 		free(hdr_uio, M_IOV);



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