* squid-2.2.STABLE5.reject_https.patch * Wed Feb 2 22:35:20 CET 2000 Modified Files in squid/src url.c Reject unencrypted https: requests straight away, rather than first try to forward it and then discover than Squid does not know how to talk https... ----------------------------------------------------------------- Index: squid/src/url.c diff -u squid/src/url.c:1.1.1.29.2.6 squid/src/url.c:1.1.1.29.2.7 --- squid/src/url.c:1.1.1.29.2.6 Mon Jan 3 06:50:13 2000 +++ squid/src/url.c Wed Feb 2 22:35:19 2000 @@ -164,8 +164,10 @@ return PROTO_HTTP; if (strcasecmp(s, "ftp") == 0) return PROTO_FTP; +#if 0 if (strcasecmp(s, "https") == 0) return PROTO_HTTPS; +#endif if (strcasecmp(s, "file") == 0) return PROTO_FTP; if (strcasecmp(s, "gopher") == 0)