diff options
Diffstat (limited to 'examples/ldnsd.c')
-rw-r--r-- | examples/ldnsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ldnsd.c b/examples/ldnsd.c index 77c5dd5c628d..c742f04d9445 100644 --- a/examples/ldnsd.c +++ b/examples/ldnsd.c @@ -30,7 +30,7 @@ #define INBUF_SIZE 4096 -void usage(FILE *output) +static void usage(FILE *output) { fprintf(output, "Usage: ldnsd <address> <port> <zone> <zonefile>\n"); fprintf(output, "Listens on the specified port and answers queries for the given zone\n"); @@ -63,7 +63,7 @@ static int udp_bind(int sock, int port, const char *my_address) } /* this will probably be moved to a better place in the library itself */ -ldns_rr_list * +static ldns_rr_list * get_rrset(const ldns_zone *zone, const ldns_rdf *owner_name, const ldns_rr_type qtype, const ldns_rr_class qclass) { uint16_t i; |