Fix compile warnings in blacklist.c

This commit is contained in:
David Adrian 2013-10-12 13:04:02 -04:00
parent 4eac51fdca
commit bc28a5a576
1 changed files with 3 additions and 2 deletions

View File

@ -72,13 +72,14 @@ static int init_from_string(char *ip, int value)
return -1;
}
constraint_set(constraint, ntohl(addr.s_addr), prefix_len, value);
char *name;
const char *name;
if (value == ADDR_DISALLOWED)
name = "blacklisting";
else
name = "whitelisting";
log_trace(name, "%s %s/%i",
name, ip, prefix_len);
return 0;
}
@ -110,7 +111,7 @@ static int init_from_file(char *file, const char *name, int value)
return 0;
}
void static init_from_array(char **cidrs, size_t len, int value)
static void init_from_array(char **cidrs, size_t len, int value)
{
for (int i=0; i < (int) len; i++) {
init_from_string(cidrs[i], value);