Spelling + more verbosity.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2790 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Molgrum 2007-11-18 14:55:27 +00:00
parent 5b85ffc865
commit 2fda3fbb99
3 changed files with 6 additions and 6 deletions

View File

@ -161,7 +161,7 @@ void Fwd_ParseCommands(cluster_t *cluster, oproxy_t *prox)
break; break;
default: 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; buf.readpos = buf.cursize;
break; break;
} }
@ -697,7 +697,7 @@ qboolean SV_ReadPendingProxy(cluster_t *cluster, oproxy_t *pend)
pend->drop = true; pend->drop = true;
pend->inbuffer[16] = 0; 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; 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 //part of the connection process, can be ignored if there's no password
} }
else 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 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 //part of the connection process, can be ignored if there's no password
} }
else 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; s = e+1;

View File

@ -3404,7 +3404,7 @@ void ParseNQC(cluster_t *cluster, sv_t *qtv, viewer_t *v, netmsg_t *m)
else else
{ {
QW_PrintfToViewer(v, "Command not recognised\n"); 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; break;
case clc_disconnect: case clc_disconnect:

View File

@ -1323,7 +1323,7 @@ void QTV_ParseQWStream(sv_t *qtv)
Sys_Printf(qtv->cluster, "Stream %i: Connected!\n", qtv->streamid); Sys_Printf(qtv->cluster, "Stream %i: Connected!\n", qtv->streamid);
continue; 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; continue;
} }
memset(&msg, 0, sizeof(msg)); memset(&msg, 0, sizeof(msg));