svn commit: r194912 - head/sys/netinet
Robert Watson
rwatson at FreeBSD.org
Wed Jun 24 21:34:39 UTC 2009
Author: rwatson
Date: Wed Jun 24 21:34:38 2009
New Revision: 194912
URL: http://svn.freebsd.org/changeset/base/194912
Log:
Fix CARP build.
Reported by: bz
Modified:
head/sys/netinet/ip_carp.c
Modified: head/sys/netinet/ip_carp.c
==============================================================================
--- head/sys/netinet/ip_carp.c Wed Jun 24 21:32:51 2009 (r194911)
+++ head/sys/netinet/ip_carp.c Wed Jun 24 21:34:38 2009 (r194912)
@@ -1667,7 +1667,7 @@ carp_set_addr6(struct carp_softc *sc, st
/* we have to do it by hands to check we won't match on us */
ia_if = NULL; own = 0;
- TAILQ_FOREACH(ia6, &V_in6_ifaddrhead, ia_link) {
+ TAILQ_FOREACH(ia, &V_in6_ifaddrhead, ia_link) {
int i;
for (i = 0; i < 4; i++) {
More information about the svn-src-head
mailing list