aboutsummaryrefslogtreecommitdiffstats
path: root/epan/epan.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-03-24 14:39:19 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-03-24 14:39:19 +0000
commit8677c1f42fc62dfca3a84dfd080eef13de56a3af (patch)
tree897d58ce28d10c242846a8a7ceff08c537796476 /epan/epan.c
parent912814ac0fdace44cb70de39c42cecd0789c1b25 (diff)
Don't load the hosts file in epan_init, it's loaded when opening a file
in cf_open(). svn path=/trunk/; revision=48526
Diffstat (limited to 'epan/epan.c')
-rw-r--r--epan/epan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/epan.c b/epan/epan.c
index 4237f7ec9b..cd65621942 100644
--- a/epan/epan.c
+++ b/epan/epan.c
@@ -108,7 +108,7 @@ epan_init(void (*register_all_protocols_func)(register_cb cb, gpointer client_da
packet_init();
dfilter_init();
final_registration_all_protocols();
- host_name_lookup_init();
+ /*host_name_lookup_init();*//* We load the hostname file in cf_open, no need to do it here? */
expert_init();
#ifdef HAVE_LUA
wslua_init(cb, client_data);