svn commit: r261022 - stable/10/sys/netgraph
Gleb Smirnoff
glebius at FreeBSD.org
Wed Jan 22 10:38:01 UTC 2014
Author: glebius
Date: Wed Jan 22 10:38:01 2014
New Revision: 261022
URL: http://svnweb.freebsd.org/changeset/base/261022
Log:
Merge r260046: Fix the parse type for NGM_LISTTYPES.
Modified:
stable/10/sys/netgraph/ng_base.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/netgraph/ng_base.c
==============================================================================
--- stable/10/sys/netgraph/ng_base.c Wed Jan 22 10:35:30 2014 (r261021)
+++ stable/10/sys/netgraph/ng_base.c Wed Jan 22 10:38:01 2014 (r261022)
@@ -468,7 +468,7 @@ static const struct ng_parse_type ng_gen
&ng_generic_linkinfo_array_type_info
};
-DEFINE_PARSE_STRUCT_TYPE(typelist, TYPELIST, (&ng_generic_nodeinfoarray_type));
+DEFINE_PARSE_STRUCT_TYPE(typelist, TYPELIST, (&ng_generic_typeinfoarray_type));
DEFINE_PARSE_STRUCT_TYPE(hooklist, HOOKLIST,
(&ng_generic_nodeinfo_type, &ng_generic_linkinfo_array_type));
DEFINE_PARSE_STRUCT_TYPE(listnodes, LISTNODES,
@@ -544,7 +544,7 @@ static const struct ng_cmdlist ng_generi
NGM_LISTTYPES,
"listtypes",
NULL,
- &ng_generic_typeinfo_type
+ &ng_generic_typelist_type
},
{
NGM_GENERIC_COOKIE,
More information about the svn-src-all
mailing list