svn commit: r197722 - user/kmacy/releng_8_fcs/sys/compat/freebsd32
Kip Macy
kmacy at FreeBSD.org
Fri Oct 2 23:18:41 UTC 2009
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);
More information about the svn-src-user
mailing list