svn commit: r227204 - head/sys/netinet

Mikolaj Golub trociny at FreeBSD.org
Sun Nov 6 09:17:49 UTC 2011


Author: trociny
Date: Sun Nov  6 09:17:48 2011
New Revision: 227204
URL: http://svn.freebsd.org/changeset/base/227204

Log:
  Fix the typo made in r157474.
  
  MFC after:	3 days

Modified:
  head/sys/netinet/in_pcb.c

Modified: head/sys/netinet/in_pcb.c
==============================================================================
--- head/sys/netinet/in_pcb.c	Sun Nov  6 09:09:45 2011	(r227203)
+++ head/sys/netinet/in_pcb.c	Sun Nov  6 09:17:48 2011	(r227204)
@@ -590,7 +590,7 @@ in_pcbbind_setup(struct inpcb *inp, stru
 				 * being in use (for now).  This is better
 				 * than a panic, but not desirable.
 				 */
-				tw = intotw(inp);
+				tw = intotw(t);
 				if (tw == NULL ||
 				    (reuseport & tw->tw_so_options) == 0)
 					return (EADDRINUSE);


More information about the svn-src-head mailing list