From bf48efffeceeedf705bf91cbb5a79ea18954041c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 13 Jul 2018 21:25:07 +0200 Subject: [PATCH] relay: fix compiler warnings on calls to snprintf --- src/plugins/relay/irc/relay-irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/relay/irc/relay-irc.c b/src/plugins/relay/irc/relay-irc.c index 475f15ee0..6c7f5aff3 100644 --- a/src/plugins/relay/irc/relay-irc.c +++ b/src/plugins/relay/irc/relay-irc.c @@ -599,7 +599,7 @@ relay_irc_get_line_info (struct t_relay_client *client, char **tags, char **message) { int i, num_tags, command, action, all_tags, length; - char str_tag[256], *pos, *message_no_color, str_time[256]; + char str_tag[512], *pos, *message_no_color, str_time[256]; const char *ptr_tag, *ptr_message, *ptr_nick, *ptr_nick1, *ptr_nick2; const char *ptr_host, *localvar_nick, *time_format; time_t msg_date;