From: Automatic source maintenance Date: Sat, 5 Mar 2011 01:12:33 +0000 (-0700) Subject: SourceFormat Enforcement X-Git-Tag: take06~27^2~114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=42ff91f914c08084fabe379e895482a64a0e46e9;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/lib/rfc1738.c b/lib/rfc1738.c index 1c8be7705f..b763835ac4 100644 --- a/lib/rfc1738.c +++ b/lib/rfc1738.c @@ -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;