From 42ff91f914c08084fabe379e895482a64a0e46e9 Mon Sep 17 00:00:00 2001 From: Automatic source maintenance Date: Fri, 4 Mar 2011 18:12:33 -0700 Subject: [PATCH] SourceFormat Enforcement --- lib/rfc1738.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2