svn commit: r227450 - stable/9/sys/netinet6

Mikolaj Golub trociny at FreeBSD.org
Fri Nov 11 14:42:05 UTC 2011


Author: trociny
Date: Fri Nov 11 14:42:05 2011
New Revision: 227450
URL: http://svn.freebsd.org/changeset/base/227450

Log:
  MFC r227449:
  
  Fix false positive EADDRINUSE that could be returned by bind, due to
  the typo made in r227207.
  
  Reported by:	kib
  Tested by:	kib
  
  Approved by:	re (kib)

Modified:
  stable/9/sys/netinet6/in6_pcb.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/amd64/include/xen/   (props changed)
  stable/9/sys/boot/   (props changed)
  stable/9/sys/boot/i386/efi/   (props changed)
  stable/9/sys/boot/ia64/efi/   (props changed)
  stable/9/sys/boot/ia64/ski/   (props changed)
  stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
  stable/9/sys/boot/powerpc/ofw/   (props changed)
  stable/9/sys/cddl/contrib/opensolaris/   (props changed)
  stable/9/sys/conf/   (props changed)
  stable/9/sys/contrib/dev/acpica/   (props changed)
  stable/9/sys/contrib/octeon-sdk/   (props changed)
  stable/9/sys/contrib/pf/   (props changed)
  stable/9/sys/contrib/x86emu/   (props changed)

Modified: stable/9/sys/netinet6/in6_pcb.c
==============================================================================
--- stable/9/sys/netinet6/in6_pcb.c	Fri Nov 11 14:09:09 2011	(r227449)
+++ stable/9/sys/netinet6/in6_pcb.c	Fri Nov 11 14:42:05 2011	(r227450)
@@ -270,7 +270,7 @@ in6_pcbbind(register struct inpcb *inp, 
 				} else if (t && (reuseport == 0 ||
 				    (t->inp_flags2 & INP_REUSEPORT) == 0) &&
 				    (ntohl(t->inp_laddr.s_addr) != INADDR_ANY ||
-				    (t->inp_vflag & INP_IPV6PROTO) == 0))
+				    (t->inp_vflag & INP_IPV6PROTO) != 0))
 					return (EADDRINUSE);
 			}
 #endif


More information about the svn-src-stable-9 mailing list