From 8239fbd041abdfbc17ed605a8190a62f6825beb4 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 23 Aug 2021 23:30:32 +0100 Subject: [PATCH] Be a bit less insulting about servers with longer line lengths. --- src/common/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/server.c b/src/common/server.c index 0c0306d5..1825117c 100644 --- a/src/common/server.c +++ b/src/common/server.c @@ -362,7 +362,7 @@ server_read (GIOChannel *source, GIOCondition condition, server *serv) serv->linebuf[serv->pos] = lbuf[i]; if (serv->pos >= (sizeof (serv->linebuf) - 1)) fprintf (stderr, - "*** HEXCHAT WARNING: Buffer overflow - shit server!\n"); + "*** HEXCHAT WARNING: Buffer overflow - non-compliant server!\n"); else serv->pos++; }