From 2fda3fbb9966af61bced49c49252822b29c9634f Mon Sep 17 00:00:00 2001 From: Molgrum Date: Sun, 18 Nov 2007 14:55:27 +0000 Subject: [PATCH] Spelling + more verbosity. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2790 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- fteqtv/forward.c | 8 ++++---- fteqtv/qw.c | 2 +- fteqtv/source.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fteqtv/forward.c b/fteqtv/forward.c index 32686ccd..afb5891b 100644 --- a/fteqtv/forward.c +++ b/fteqtv/forward.c @@ -161,7 +161,7 @@ void Fwd_ParseCommands(cluster_t *cluster, oproxy_t *prox) break; default: - Sys_Printf(cluster, "Received unrecognised packet type from downstream proxy.\n"); + Sys_Printf(cluster, "Received unrecognized packet type from downstream proxy.\n"); buf.readpos = buf.cursize; break; } @@ -697,7 +697,7 @@ qboolean SV_ReadPendingProxy(cluster_t *cluster, oproxy_t *pend) pend->drop = true; pend->inbuffer[16] = 0; - Sys_Printf(cluster, "Connect for unrecognised protocol %s\n", pend->inbuffer); + Sys_Printf(cluster, "Stream %i: Connect for unrecognized protocol %s\n", qtv->streamid, pend->inbuffer); return false; } } @@ -869,7 +869,7 @@ qboolean SV_ReadPendingProxy(cluster_t *cluster, oproxy_t *pend) //part of the connection process, can be ignored if there's no password } else - printf("Unrecognised token in QTV connection request (%s)\n", s); + printf("Stream %i: Unrecognized token in QTV connection request (%s)\n", qtv->streamid, s); } else { @@ -927,7 +927,7 @@ qboolean SV_ReadPendingProxy(cluster_t *cluster, oproxy_t *pend) //part of the connection process, can be ignored if there's no password } else - printf("Unrecognised token in QTV connection request (%s)\n", s); + printf("Stream %i: Unrecognized token in QTV connection request (%s)\n", qtv->streamid, s); } } s = e+1; diff --git a/fteqtv/qw.c b/fteqtv/qw.c index 40cc2784..88703ff1 100644 --- a/fteqtv/qw.c +++ b/fteqtv/qw.c @@ -3404,7 +3404,7 @@ void ParseNQC(cluster_t *cluster, sv_t *qtv, viewer_t *v, netmsg_t *m) else { QW_PrintfToViewer(v, "Command not recognised\n"); - Sys_Printf(cluster, "NQ client sent unrecognised stringcmd %s\n", buf); + Sys_Printf(cluster, "NQ client sent unrecognized stringcmd %s\n", buf); } break; case clc_disconnect: diff --git a/fteqtv/source.c b/fteqtv/source.c index f99b73bf..e3fc892e 100644 --- a/fteqtv/source.c +++ b/fteqtv/source.c @@ -1323,7 +1323,7 @@ void QTV_ParseQWStream(sv_t *qtv) Sys_Printf(qtv->cluster, "Stream %i: Connected!\n", qtv->streamid); continue; } - Sys_Printf(qtv->cluster, "Stream %i: %s: unrecognised connectionless packet:\n%s\n", qtv->streamid, qtv->server, buffer+4); + Sys_Printf(qtv->cluster, "Stream %i: %s: unrecognized connectionless packet:\n%s\n", qtv->streamid, qtv->server, buffer+4); continue; } memset(&msg, 0, sizeof(msg));