]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 5 Mar 2011 01:12:33 +0000 (18:12 -0700)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 5 Mar 2011 01:12:33 +0000 (18:12 -0700)
lib/rfc1738.c

index 1c8be7705f23a2804ff2d75c14c8168c64526b84..b763835ac41fa1ac1466934054558c9549a89906 100644 (file)
@@ -107,7 +107,7 @@ rfc1738_do_escape(const char *url, int flags)
 
         /* RFC 1738 defines these chars as unsafe */
         if ((flags & RFC1738_ESCAPE_UNSAFE)) {
-            for (i = 0;i < sizeof(rfc1738_unsafe_chars); i++) {
+            for (i = 0; i < sizeof(rfc1738_unsafe_chars); i++) {
                 if (*p == rfc1738_unsafe_chars[i]) {
                     do_escape = 1;
                     break;