Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/netinet6 Pull up revision 1.51 (requested by itojun...



details:   https://anonhg.NetBSD.org/src/rev/77a251db8013
branches:  netbsd-1-6
changeset: 529045:77a251db8013
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Aug 27 09:33:35 2002 +0000

description:
Pull up revision 1.51 (requested by itojun in ticket #731):
pass proc * to in6_pcbsetport.  PR 18073

diffstat:

 sys/netinet6/in6_pcb.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b49a01e10903 -r 77a251db8013 sys/netinet6/in6_pcb.c
--- a/sys/netinet6/in6_pcb.c    Tue Aug 27 09:33:27 2002 +0000
+++ b/sys/netinet6/in6_pcb.c    Tue Aug 27 09:33:35 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: in6_pcb.c,v 1.46 2002/03/21 02:11:39 itojun Exp $      */
+/*     $NetBSD: in6_pcb.c,v 1.46.6.1 2002/08/27 09:33:35 lukem Exp $   */
 /*     $KAME: in6_pcb.c,v 1.84 2001/02/08 18:02:08 itojun Exp $        */
 
 /*
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in6_pcb.c,v 1.46 2002/03/21 02:11:39 itojun Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in6_pcb.c,v 1.46.6.1 2002/08/27 09:33:35 lukem Exp $");
 
 #include "opt_ipsec.h"
 
@@ -276,7 +276,7 @@
 
        if (lport == 0) {
                int e;
-               if ((e = in6_pcbsetport(&in6p->in6p_laddr, in6p)) != 0)
+               if ((e = in6_pcbsetport(&in6p->in6p_laddr, in6p, p)) != 0)
                        return(e);
        }
        else



Home | Main Index | Thread Index | Old Index