diff options
author | Mike Frysinger | 2006-06-20 23:03:27 +0000 |
---|---|---|
committer | Mike Frysinger | 2006-06-20 23:03:27 +0000 |
commit | b049c0ec196fe3fd89c0b92b3d2d70bce095fba0 (patch) | |
tree | b1aa7a9c97881c20424bc780d23af6b0263941d8 /networking/ifupdown.c | |
parent | b13fee4cbb98a20ae761da46b02b58cb47f289ab (diff) | |
download | busybox-b049c0ec196fe3fd89c0b92b3d2d70bce095fba0.zip busybox-b049c0ec196fe3fd89c0b92b3d2d70bce095fba0.tar.gz |
only enable count_bit functions when actually needed to fix warning reported by Bernhard Fischer
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 6a200bb..ff47e60 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -111,6 +111,8 @@ static char no_act = 0; static char verbose = 0; static char **__myenviron = NULL; +#if ENABLE_FEATURE_IFUPDOWN_IPV4 || ENABLE_FEATURE_IFUPDOWN_IPV6 + #ifdef CONFIG_FEATURE_IFUPDOWN_IP static unsigned int count_bits(unsigned int a) @@ -135,7 +137,6 @@ static int count_netmask_bits(char *dotted_quad) } #endif -#if ENABLE_FEATURE_IFUPDOWN_IPV4 || ENABLE_FEATURE_IFUPDOWN_IPV6 static void addstr(char **buf, size_t *len, size_t *pos, char *str, size_t str_length) { if (*pos + str_length >= *len) { |