]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
correct a couple error messages which said "Map downloads", changed to
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 22 Apr 2007 05:13:06 +0000 (05:13 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 22 Apr 2007 05:13:06 +0000 (05:13 +0000)
"cURL downloads"

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7149 d7cf8633-e32d-0410-b094-e92efae38249

libcurl.c

index 3ee6111b3623ca8b0619c2c0699eaa1485ba9a41..1c30808a5fd780ad4d57fd1c59ea138250b1871e 100644 (file)
--- 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");