netconfig: Set more correct buffer length

Use INET_ADDRSTRLEN as the IPv4 address buffer size to avoid confusion.
This commit is contained in:
Andrew Zaborowski 2021-01-25 18:56:17 +01:00 committed by Denis Kenzior
parent 54e3bb385a
commit 5c95c5cc16
1 changed files with 1 additions and 1 deletions

View File

@ -608,7 +608,7 @@ static bool netconfig_ipv4_routes_install(struct netconfig *netconfig)
L_AUTO_FREE_VAR(char *, gateway) = NULL;
struct in_addr in_addr;
char *network;
char ip[INET6_ADDRSTRLEN];
char ip[INET_ADDRSTRLEN];
unsigned int prefix_len =
l_rtnl_address_get_prefix_length(netconfig->v4_address);