Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Nov 2011 14:09:09 +0000 (UTC)
From:      Mikolaj Golub <trociny@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r227449 - head/sys/netinet6
Message-ID:  <201111111409.pABE99qt093995@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111111409.pABE99qt093995>