X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/5540bab74ca1a39639a098d15e87daf45d83b7ec..a0fac2f1c903f765c8b8596f1ec93beb52b72c7a:/ipaddr.c diff --git a/ipaddr.c b/ipaddr.c index 6d0b02a..09eb80d 100644 --- a/ipaddr.c +++ b/ipaddr.c @@ -358,7 +358,7 @@ string_t subnet_to_string(struct subnet sn) uint8_t a,b,c,d; string_t s; - s=safe_malloc(19,"subnet_to_string"); + s=ipaddr_getbuf(); a=addr>>24; b=addr>>16; c=addr>>8; @@ -418,7 +418,7 @@ static struct subnet string_item_to_subnet(item_t *i, cstring_t desc, return s; } -uint32_t string_item_to_ipaddr(item_t *i, cstring_t desc) +uint32_t string_item_to_ipaddr(const item_t *i, cstring_t desc) { uint32_t a, b, c, d; int match;