X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgisimple.c;h=3be01e397cef6fd510af6341213da12099181d6b;hp=3029f14b95020c34bc09f398701d4dc79c42bb0d;hb=76241df7485d4437bb78c1accfae97ee71578473;hpb=dea66ab08a60bd782ac846b623655bb1fc1e2e5a diff --git a/cgisimple.c b/cgisimple.c index 3029f14b..3be01e39 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1438,11 +1438,14 @@ jb_err cgi_show_url_info(struct client_state *csp, } /* - * We have a warning about SSL paths. Hide it for unencrypted sites. + * We have a warning about SSL paths. Hide it for unencrypted sites + * and unconditionally if https inspection is enabled. */ +#ifndef FEATURE_HTTPS_INSPECTION if (!url_to_query->ssl) +#endif { - if (map_block_killer(exports, "https")) + if (map_block_killer(exports, "https-and-no-https-inspection")) { free_current_action(action); free_map(exports); @@ -1756,6 +1759,14 @@ static jb_err show_defines(struct map *exports) 1, #else 0, +#endif + }, + { + "FEATURE_BROTLI", +#ifdef FEATURE_BROTLI + 1, +#else + 0, #endif }, {