svn commit: r276199 - head/sys/netipsec

Andrey V. Elsukov ae at FreeBSD.org
Thu Dec 25 13:38:52 UTC 2014


Author: ae
Date: Thu Dec 25 13:38:51 2014
New Revision: 276199
URL: https://svnweb.freebsd.org/changeset/base/276199

Log:
  Fix VIMAGE build.

Modified:
  head/sys/netipsec/key.c

Modified: head/sys/netipsec/key.c
==============================================================================
--- head/sys/netipsec/key.c	Thu Dec 25 04:41:43 2014	(r276198)
+++ head/sys/netipsec/key.c	Thu Dec 25 13:38:51 2014	(r276199)
@@ -7608,7 +7608,7 @@ key_destroy(void)
 	TAILQ_INIT(&drainq);
 	SPTREE_WLOCK();
 	for (i = 0; i < IPSEC_DIR_MAX; i++) {
-		TAILQ_CONCAT(&drainq, &V_sptree[dir], chain);
+		TAILQ_CONCAT(&drainq, &V_sptree[i], chain);
 	}
 	SPTREE_WUNLOCK();
 	sp = TAILQ_FIRST(&drainq);


More information about the svn-src-all mailing list