1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 16:23:14 +02:00

xfer: use larger buffer for IP address

This removes a gcc warning about a too small buffer.
This commit is contained in:
Sébastien Helleu
2022-09-09 19:20:41 +02:00
parent d5cbd6c49a
commit 5070a6330c
+1 -1
View File
@@ -56,7 +56,7 @@
char *
xfer_network_convert_integer_to_ipv4 (const char *str_address)
{
char *error, result[64];
char *error, result[128];
long number;
if (!str_address || !str_address[0])