From 5bed5ad9e88d13575ef8a9b63a97a8e1156467d8 Mon Sep 17 00:00:00 2001 From: divverent Date: Wed, 27 Feb 2008 13:54:22 +0000 Subject: [PATCH] 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 --- prvm_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.39.2