aboutsummaryrefslogtreecommitdiffstats
path: root/epan/addr_resolv.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-05-19 18:35:18 -0700
committerGuy Harris <guy@alum.mit.edu>2018-05-20 01:35:52 +0000
commit724877497a7eab2cb28d5531233e083fcf9ed253 (patch)
tree9543acb50be5115e72d906611ce78e32f30bc7b7 /epan/addr_resolv.c
parent7655e0bad626787a05600ef2cf73e98e9d86f2e6 (diff)
Make private variables static.
Change-Id: I0844795597cec83dfb6752fb986d2a9957789530 Reviewed-on: https://code.wireshark.org/review/27657 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/addr_resolv.c')
-rw-r--r--epan/addr_resolv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/addr_resolv.c b/epan/addr_resolv.c
index efd8fe9e4b..f918d92eca 100644
--- a/epan/addr_resolv.c
+++ b/epan/addr_resolv.c
@@ -339,8 +339,8 @@ typedef struct _async_hostent {
void *addrp;
} async_hostent_t;
-ares_channel ghba_chan; /* ares_gethostbyaddr -- Usually non-interactive, no timeout */
-ares_channel ghbn_chan; /* ares_gethostbyname -- Usually interactive, timeout */
+static ares_channel ghba_chan; /* ares_gethostbyaddr -- Usually non-interactive, no timeout */
+static ares_channel ghbn_chan; /* ares_gethostbyname -- Usually interactive, timeout */
static gboolean async_dns_initialized = FALSE;
static guint async_dns_in_flight = 0;