From c44da35a1eb42a23223b7f950c33d2a603ce60d6 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sun, 1 Feb 2015 23:27:49 +0100 Subject: fix compilation without USE_CURL --- src/client/cl_main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/cl_main.c b/src/client/cl_main.c index dc177cf7..2ae95fa3 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -2122,7 +2122,11 @@ void CL_NextDownload(void) int prompt; // A download has finished, check whether this matches a referenced checksum - if(*clc.downloadName && !clc.activeCURLNotGameRelated) + if(*clc.downloadName +#ifdef USE_CURL + && !clc.activeCURLNotGameRelated +#endif + ) { char *zippath = FS_BuildOSPath(Cvar_VariableString("fs_homepath"), clc.downloadName, ""); zippath[strlen(zippath)-1] = '\0'; -- cgit