RPKI: Fix allocation of hostname when using an IPv6 address

This commit is contained in:
Vincent Bernat 2019-07-29 15:42:30 +02:00 committed by Ondrej Zajicek (work)
parent 00284f0ed6
commit 3b62417c35

View file

@ -97,7 +97,7 @@ rpki_cache_addr:
rpki_check_unused_hostname();
RPKI_CFG->ip = $1;
/* Ensure hostname is filled */
char *hostname = cfg_allocz(sizeof(INET6_ADDRSTRLEN + 1));
char *hostname = cfg_allocz(INET6_ADDRSTRLEN + 1);
bsnprintf(hostname, INET6_ADDRSTRLEN+1, "%I", RPKI_CFG->ip);
RPKI_CFG->hostname = hostname;
}