Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/netbsd32 Need to deal with msg_iov in netbsd32_to...



details:   https://anonhg.NetBSD.org/src/rev/02a2cb8dd4ca
branches:  trunk
changeset: 760415:02a2cb8dd4ca
user:      matt <matt%NetBSD.org@localhost>
date:      Tue Jan 04 11:00:31 2011 +0000

description:
Need to deal with msg_iov in netbsd32_to_msghdr.

diffstat:

 sys/compat/netbsd32/netbsd32_conv.h |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 3b8a434ff4c1 -r 02a2cb8dd4ca sys/compat/netbsd32/netbsd32_conv.h
--- a/sys/compat/netbsd32/netbsd32_conv.h       Tue Jan 04 10:59:28 2011 +0000
+++ b/sys/compat/netbsd32/netbsd32_conv.h       Tue Jan 04 11:00:31 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_conv.h,v 1.22 2009/01/25 01:22:42 christos Exp $      */
+/*     $NetBSD: netbsd32_conv.h,v 1.23 2011/01/04 11:00:31 matt Exp $  */
 
 /*
  * Copyright (c) 1998, 2001 Matthew R. Green
@@ -273,6 +273,7 @@
 
        mhp->msg_name = NETBSD32PTR64(mhp32->msg_name);
        mhp->msg_namelen = mhp32->msg_namelen;
+       mhp->msg_iov = NETBSD32PTR64(mhp32->msg_iov);
        mhp->msg_iovlen = (size_t)mhp32->msg_iovlen;
        mhp->msg_control = NETBSD32PTR64(mhp32->msg_control);
        mhp->msg_controllen = mhp32->msg_controllen;



Home | Main Index | Thread Index | Old Index