fixes to DP7 downloading

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2632 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2007-09-01 05:18:20 +00:00
parent ba985019ef
commit 619bb7a1cd
1 changed files with 4 additions and 4 deletions

View File

@ -1925,7 +1925,7 @@ void SV_BeginDownload_f(void)
// this is needed to cancel the current download // this is needed to cancel the current download
if (ISNQCLIENT(host_client)) if (ISNQCLIENT(host_client))
{ {
ClientReliableWrite_Begin (host_client, svc_stufftext, 2+strlen(name)); ClientReliableWrite_Begin (host_client, svc_stufftext, 2+12);
ClientReliableWrite_String (host_client, "\nstopdownload\n"); ClientReliableWrite_String (host_client, "\nstopdownload\n");
} }
else else
@ -1947,7 +1947,7 @@ void SV_BeginDownload_f(void)
if (mvdname) if (mvdname)
{ {
ClientReliableWrite_Begin (host_client, svc_stufftext, 17+strlen(mvdname)); ClientReliableWrite_Begin (host_client, svc_stufftext, 2+15+strlen(mvdname));
ClientReliableWrite_String (host_client, va("\ndownload demos/%s\n", mvdname)); ClientReliableWrite_String (host_client, va("\ndownload demos/%s\n", mvdname));
} }
return; return;
@ -1960,7 +1960,7 @@ void SV_BeginDownload_f(void)
{ {
SV_PrintToClient(host_client, PRINT_HIGH, "Download rejected by server settings\n"); SV_PrintToClient(host_client, PRINT_HIGH, "Download rejected by server settings\n");
ClientReliableWrite_Begin (host_client, svc_stufftext, 2+strlen(name)); ClientReliableWrite_Begin (host_client, svc_stufftext, 2+12);
ClientReliableWrite_String (host_client, "\nstopdownload\n"); ClientReliableWrite_String (host_client, "\nstopdownload\n");
} }
#ifdef PEXT_CHUNKEDDOWNLOADS #ifdef PEXT_CHUNKEDDOWNLOADS
@ -2016,7 +2016,7 @@ void SV_BeginDownload_f(void)
Sys_Printf ("Couldn't download %s to %s\n", name, host_client->name); Sys_Printf ("Couldn't download %s to %s\n", name, host_client->name);
if (ISNQCLIENT(host_client)) if (ISNQCLIENT(host_client))
{ {
ClientReliableWrite_Begin (host_client, svc_stufftext, 2+strlen(name)); ClientReliableWrite_Begin (host_client, svc_stufftext, 2+12);
ClientReliableWrite_String (host_client, "\nstopdownload\n"); ClientReliableWrite_String (host_client, "\nstopdownload\n");
} }
else else