]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
oops... use upper case hex, as that matches URI::Escape module (HTTP allows both)
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 27 Feb 2008 13:54:22 +0000 (13:54 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 27 Feb 2008 13:54:22 +0000 (13:54 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8144 d7cf8633-e32d-0410-b094-e92efae38249

prvm_cmds.c

index 401c7f93e445b73c6fc19d02b9e5fb08b88116f8..0fde71812850062ce879be6672a94be9ce39388e 100644 (file)
@@ -4587,7 +4587,7 @@ void VM_uri_escape (void)
        char src[VM_STRINGTEMP_LENGTH];
        char dest[VM_STRINGTEMP_LENGTH];
        char *p, *q;
-       static const char *hex = "0123456789abcdef";
+       static const char *hex = "0123456789ABCDEF";
 
        VM_SAFEPARMCOUNTRANGE(1, 8, VM_uri_escape);
        VM_VarString(0, src, sizeof(src));