summaryrefslogtreecommitdiff
path: root/epan/epan.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-08-01 20:11:13 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-08-01 20:11:13 +0000
commit0105d538d25840e8d9ba2c845a13740fff0e505c (patch)
treeb63bda93b3d5f6c099810d1327e3b3bc46ca9c11 /epan/epan.c
parent490f48044c1c89f120708c2c923e475bdbdbc755 (diff)
downloadwireshark-0105d538d25840e8d9ba2c845a13740fff0e505c.tar.gz
Use glibs hastables rather than home grown variants for manuf an wka(well known addresses).
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9000 svn path=/trunk/; revision=51084
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 70db022c53..a18360d370 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -111,6 +111,7 @@ epan_init(void (*register_all_protocols_func)(register_cb cb, gpointer client_da
dfilter_init();
final_registration_all_protocols();
/*host_name_lookup_init();*//* We load the hostname file in cf_open, no need to do it here? */
+ initialize_ethers();
expert_packet_init();
#ifdef HAVE_LUA
wslua_init(cb, client_data);
@@ -132,6 +133,7 @@ epan_cleanup(void)
#endif
except_deinit();
host_name_lookup_cleanup();
+ eth_name_lookup_cleanup();
wmem_cleanup();
}