aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/client/cl_main.c')
-rw-r--r--code/client/cl_main.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c
index f435be0..029dba4 100644
--- a/code/client/cl_main.c
+++ b/code/client/cl_main.c
@@ -1916,11 +1916,25 @@ CL_NextDownload
A download completed or failed
=================
*/
-void CL_NextDownload(void) {
+void CL_NextDownload(void)
+{
char *s;
char *remoteName, *localName;
qboolean useCURL = qfalse;
+ // A download has finished, check whether this matches a referenced checksum
+ if(*clc.downloadName)
+ {
+ char *zippath = FS_BuildOSPath(Cvar_VariableString("fs_homepath"), clc.downloadName, "");
+ zippath[strlen(zippath)-1] = '\0';
+
+ if(!FS_CompareZipChecksum(zippath))
+ Com_Error(ERR_DROP, "Incorrect checksum for file: %s", clc.downloadName);
+ }
+
+ *clc.downloadTempName = *clc.downloadName = 0;
+ Cvar_Set("cl_downloadName", "");
+
// We are looking to start a download here
if (*clc.downloadList) {
s = clc.downloadList;
@@ -2027,6 +2041,10 @@ void CL_InitDownloads(void) {
if ( *clc.downloadList ) {
// if autodownloading is not enabled on the server
cls.state = CA_CONNECTED;
+
+ *clc.downloadTempName = *clc.downloadName = 0;
+ Cvar_Set( "cl_downloadName", "" );
+
CL_NextDownload();
return;
}