From: divverent Date: Wed, 27 Feb 2008 13:54:22 +0000 (+0000) Subject: oops... use upper case hex, as that matches URI::Escape module (HTTP allows both) X-Git-Tag: xonotic-v0.1.0preview~2378 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5bed5ad9e88d13575ef8a9b63a97a8e1156467d8;p=xonotic%2Fdarkplaces.git oops... use upper case hex, as that matches URI::Escape module (HTTP allows both) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8144 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/prvm_cmds.c b/prvm_cmds.c index 401c7f93..0fde7181 100644 --- a/prvm_cmds.c +++ b/prvm_cmds.c @@ -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));