summary refs log tree commit diff stats
path: root/src/common/server.c
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-08-23 23:30:32 +0100
committerPatrick <tingping@tingping.se>2021-08-24 16:40:54 -0500
commit8239fbd041abdfbc17ed605a8190a62f6825beb4 (patch)
tree456a0b3aa989d7067399eb38a581cd1963c5cdf0 /src/common/server.c
parent899b4cd3eb85f46ee44e0ee7577ebaa43b082196 (diff)
Be a bit less insulting about servers with longer line lengths.
Diffstat (limited to 'src/common/server.c')
-rw-r--r--src/common/server.c2
1 files changed, 1 insertions, 1 deletions
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++;
 			}