From b1cfd3922c6ac39291ecc554d63e301164548a36 Mon Sep 17 00:00:00 2001 From: Aaron Jones Date: Wed, 1 Jun 2016 20:02:57 +0000 Subject: [PATCH] dns: make function used only within this unit static --- ircd/dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/dns.c b/ircd/dns.c index 4af77f48..fa3c530a 100644 --- a/ircd/dns.c +++ b/ircd/dns.c @@ -174,7 +174,7 @@ lookup_ip(const char *addr, int aftype, DNSCB callback, void *data) return (rid); } -uint32_t +static uint32_t get_nameservers(DNSLISTCB callback, void *data) { struct dnsstatreq *req = rb_malloc(sizeof(struct dnsstatreq));