From 44de649e5cb3e333d7ff702249374100d0ebbd79 Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Wed, 6 Nov 2013 11:36:57 +0000 Subject: [PATCH] Make private functions "static" --- src/rfc1035.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rfc1035.c b/src/rfc1035.c index ff97576..64ad5bf 100644 --- a/src/rfc1035.c +++ b/src/rfc1035.c @@ -637,7 +637,7 @@ struct subnet_opt { #endif }; -size_t calc_subnet_opt(struct subnet_opt *opt, union mysockaddr *source) +static size_t calc_subnet_opt(struct subnet_opt *opt, union mysockaddr *source) { /* http://tools.ietf.org/html/draft-vandergaast-edns-client-subnet-02 */