View | Details | Raw Unified | Return to bug 210726 | Differences between
and this patch

Collapse All | Expand All

(-)sys/netinet/in_pcb.c (-2 / +2 lines)
Lines 704-710 Link Here
704
#ifdef INET6
704
#ifdef INET6
705
		if ((inp->inp_vflag & INP_IPV6) != 0)
705
		if ((inp->inp_vflag & INP_IPV6) != 0)
706
			tmpinp = in6_pcblookup_local(pcbinfo,
706
			tmpinp = in6_pcblookup_local(pcbinfo,
707
			    &inp->in6p_laddr, lport, lookupflags, cred);
707
			    &inp->in6p_laddr, lport, lookupflags, NULL /*cred*/);
708
#endif
708
#endif
709
#if defined(INET) && defined(INET6)
709
#if defined(INET) && defined(INET6)
710
		else
710
		else
Lines 711-717 Link Here
711
#endif
711
#endif
712
#ifdef INET
712
#ifdef INET
713
			tmpinp = in_pcblookup_local(pcbinfo, laddr,
713
			tmpinp = in_pcblookup_local(pcbinfo, laddr,
714
			    lport, lookupflags, cred);
714
			    lport, lookupflags, NULL /*cred*/);
715
#endif
715
#endif
716
	} while (tmpinp != NULL);
716
	} while (tmpinp != NULL);

Return to bug 210726