X-Git-Url: http://git.asbjorn.biz/?p=debian%2Fdhcpd-pools.git;a=blobdiff_plain;f=src%2Fdhcpd-pools.h;h=fcf75b220d5fd6d347534998d94db957aaeb05ec;hp=4bb9d2b873ea7d5d03517826d084b5816f36c00a;hb=HEAD;hpb=d54721b3a44a87be75b83860a955ddc7a0ec6b3d diff --git a/src/dhcpd-pools.h b/src/dhcpd-pools.h index 4bb9d2b..fcf75b2 100644 --- a/src/dhcpd-pools.h +++ b/src/dhcpd-pools.h @@ -107,7 +107,6 @@ static int const output_limit_bit_3 = 4; unsigned int fullhtml; struct shared_network_t *shared_networks; -char *shared_net_names; unsigned int num_shared_networks; struct range_t *ranges; @@ -127,8 +126,8 @@ struct macaddr_t *macaddr; /* Function prototypes */ int prepare_memory(void); int parse_leases(void); -char *parse_config(int, char *, char *, char *, struct shared_network_t *) - __attribute__ ((nonnull(2, 3, 4))); +void parse_config(int, char *, struct shared_network_t *) + __attribute__ ((nonnull(2, 3))); int nth_field(int n, char *dest, const char *src) __attribute__ ((nonnull(2, 3))) #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) @@ -148,6 +147,7 @@ void *safe_malloc(const size_t size) #endif #endif ; +void *safe_realloc(void *ptr, const size_t size); char *safe_strdup(const char *str) __attribute__ ((nonnull(1))); void print_version(void) __attribute__ ((noreturn)); void usage(int status) __attribute__ ((noreturn));