From a0a134eb7d096ca7aa3558688d10102d87a26125 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 22 Apr 2007 05:13:06 +0000 Subject: [PATCH] correct a couple error messages which said "Map downloads", changed to "cURL downloads" git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7149 d7cf8633-e32d-0410-b094-e92efae38249 --- libcurl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcurl.c b/libcurl.c index 3ee6111b..1c30808a 100644 --- a/libcurl.c +++ b/libcurl.c @@ -281,7 +281,7 @@ static void Curl_CheckCommandWhenDone() return; if(numdownloads_added && (numdownloads_success == numdownloads_added) && *command_when_done) { - Con_DPrintf("Map downloads occurred, executing %s\n", command_when_done); + Con_DPrintf("cURL downloads occurred, executing %s\n", command_when_done); Cbuf_AddText("\n"); Cbuf_AddText(command_when_done); Cbuf_AddText("\n"); @@ -289,7 +289,7 @@ static void Curl_CheckCommandWhenDone() } else if(numdownloads_added && numdownloads_fail && *command_when_error) { - Con_DPrintf("Map downloads FAILED, executing %s\n", command_when_error); + Con_DPrintf("cURL downloads FAILED, executing %s\n", command_when_error); Cbuf_AddText("\n"); Cbuf_AddText(command_when_error); Cbuf_AddText("\n"); -- 2.39.2