svn commit: r227449 - head/sys/netinet6

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


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

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

Modified:
  head/sys/netinet6/in6_pcb.c

Modified: head/sys/netinet6/in6_pcb.c
==============================================================================
--- head/sys/netinet6/in6_pcb.c	Fri Nov 11 12:06:09 2011	(r227448)
+++ head/sys/netinet6/in6_pcb.c	Fri Nov 11 14:09:09 2011	(r227449)
@@ -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-all mailing list