svn commit: r231741 - stable/8/sys/netinet

Kevin Lo kevlo at FreeBSD.org
Wed Feb 15 05:37:42 UTC 2012


Author: kevlo
Date: Wed Feb 15 05:37:41 2012
New Revision: 231741
URL: http://svn.freebsd.org/changeset/base/231741

Log:
  MFC r224747:
  
  If RTF_HOST flag is specified, then we are interested in destination
  address.
  
  PR:	kern/159600
  Submitted by:	Svatopluk Kraus <onwahe at gmail dot com>

Modified:
  stable/8/sys/netinet/in.c

Modified: stable/8/sys/netinet/in.c
==============================================================================
--- stable/8/sys/netinet/in.c	Wed Feb 15 05:35:37 2012	(r231740)
+++ stable/8/sys/netinet/in.c	Wed Feb 15 05:37:41 2012	(r231741)
@@ -1043,7 +1043,7 @@ in_addprefix(struct in_ifaddr *target, i
 	IN_IFADDR_RLOCK();
 	TAILQ_FOREACH(ia, &V_in_ifaddrhead, ia_link) {
 		if (rtinitflags(ia)) {
-			p = ia->ia_addr.sin_addr;
+			p = ia->ia_dstaddr.sin_addr;
 
 			if (prefix.s_addr != p.s_addr)
 				continue;


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