Date: Wed, 17 Oct 2012 21:19:27 +0000 (UTC) From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241650 - head/sys/net Message-ID: <201210172119.q9HLJRQP066454@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210172119.q9HLJRQP066454>