diff options
author | Sadie Powell <sadie@witchery.services> | 2021-08-23 23:30:32 +0100 |
---|---|---|
committer | Patrick <tingping@tingping.se> | 2021-08-24 16:40:54 -0500 |
commit | 8239fbd041abdfbc17ed605a8190a62f6825beb4 (patch) | |
tree | 456a0b3aa989d7067399eb38a581cd1963c5cdf0 /src/common | |
parent | 899b4cd3eb85f46ee44e0ee7577ebaa43b082196 (diff) |
Be a bit less insulting about servers with longer line lengths.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/server.c | 2 |
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++; } |