aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_proto.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-12-10 19:04:50 -0800
committerGuy Harris <guy@alum.mit.edu>2014-12-11 03:05:22 +0000
commit151164d4140b1ab882e3b0778e0aabdbaad06191 (patch)
tree320da63e766f2c235db70916261405ec5a3aca0f /epan/wslua/wslua_proto.c
parent9855beff31310162990131c70444fd2662a64b7c (diff)
Give dissector_all_heur_tables_foreach_table() a sort function.
This makes it a bit more like dissector_all_tables_foreach_table. Improve comments and clean up whitespace while we're at it. Change-Id: I5147427f864add285e3bb6cb35ad9fa83bea516c Reviewed-on: https://code.wireshark.org/review/5714 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/wslua/wslua_proto.c')
-rw-r--r--epan/wslua/wslua_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wslua/wslua_proto.c b/epan/wslua/wslua_proto.c
index 66a90b066f..0ff0e651b0 100644
--- a/epan/wslua/wslua_proto.c
+++ b/epan/wslua/wslua_proto.c
@@ -2262,7 +2262,7 @@ WSLUA_CONSTRUCTOR DissectorTable_heuristic_list (lua_State *L) {
lua_newtable(L);
- dissector_all_heur_tables_foreach_table(heur_dissector_tables_list_func, (gpointer)&data);
+ dissector_all_heur_tables_foreach_table(heur_dissector_tables_list_func, (gpointer)&data, NULL);
WSLUA_RETURN(1); /* The array table of registered heuristic list names */
}