File 10831.patch of Package squid-beta
---------------------
PatchSet 10831
Date: 2007/05/23 21:59:44
Author: hno
Branch: HEAD
Tag: (none)
Log:
URI-escape using the recommended upper case
Members:
lib/rfc1738.c:1.26->1.27
Index: squid3/lib/rfc1738.c
===================================================================
RCS file: /cvsroot/squid/squid3/lib/rfc1738.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- squid3/lib/rfc1738.c 19 Dec 2003 06:12:40 -0000 1.26
+++ squid3/lib/rfc1738.c 23 May 2007 21:59:44 -0000 1.27
@@ -1,5 +1,5 @@
/*
- * $Id: rfc1738.c,v 1.26 2003/12/19 06:12:40 wessels Exp $
+ * $Id: rfc1738.c,v 1.27 2007/05/23 21:59:44 hno Exp $
*
* DEBUG:
* AUTHOR: Harvest Derived
@@ -136,7 +136,7 @@
* allocated - KA */
if (do_escape == 1) {
- (void) sprintf(q, "%%%02x", (unsigned char) *p);
+ (void) sprintf(q, "%%%02X", (unsigned char) *p);
q += sizeof(char) * 2;
} else {
*q = *p;