svn commit: r241650 - head/sys/net

Gleb Smirnoff glebius at FreeBSD.org
Wed Oct 17 21:19:27 UTC 2012


Author: glebius
Date: Wed Oct 17 21:19:27 2012
New Revision: 241650
URL: http://svn.freebsd.org/changeset/base/241650

Log:
  Fix VIMAGE build.
  
  Reported by:	Nikolai Lifanov <lifanov mail.lifanov.com>
  Pointy hat to:	glebius

Modified:
  head/sys/net/if_clone.c

Modified: head/sys/net/if_clone.c
==============================================================================
--- head/sys/net/if_clone.c	Wed Oct 17 20:45:48 2012	(r241649)
+++ head/sys/net/if_clone.c	Wed Oct 17 21:19:27 2012	(r241650)
@@ -272,7 +272,7 @@ if_clone_destroy(const char *name)
 	if (ifc == NULL && !IS_DEFAULT_VNET(curvnet)) {
 		CURVNET_SET_QUIET(vnet0);
 		LIST_FOREACH(ifc, &V_if_cloners, ifc_list)
-			if (ifc->type == SIMPLE) {
+			if (ifc->ifc_type == SIMPLE) {
 				if (ifc_simple_match(ifc, name))
 					break;
 			} else {


More information about the svn-src-all mailing list