mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
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:
parent
5b85ffc865
commit
2fda3fbb99
3 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue