X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=cgisimple.c;h=a7678ae2408ca176b5f9f3dc47d73a8ff53681c9;hp=79b811f9ff4ffa2ee623eec0da72348c6afe8238;hb=304265caf6f5074df69e69282e5f33bb8aedade5;hpb=9b1a4d7e6645b3e2987f67fe3d4d22ae617457f7 diff --git a/cgisimple.c b/cgisimple.c index 79b811f9..a7678ae2 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -308,7 +308,7 @@ static void cgi_create_client_tag_form(char *form, size_t size, snprintf(form, size, "
\n" " \n" - " \n" + " \n" " \n" " \n" "
", tag, toggle_state, !expires, button_name); @@ -401,7 +401,7 @@ jb_err cgi_show_client_tags(struct client_state *csp, refresh_delay = get_next_tag_timeout_for_client(csp->client_address); if (refresh_delay != 0) { - snprintf(buf, sizeof(buf), "%d", csp->config->client_tag_lifetime); + snprintf(buf, sizeof(buf), "%u", csp->config->client_tag_lifetime); if (map(exports, "refresh-delay", 1, buf, 1)) { free_map(exports); @@ -1828,6 +1828,14 @@ static jb_err show_defines(struct map *exports) 1, #else 0, +#endif + }, + { + "FEATURE_HTTPS_FILTERING", +#ifdef FEATURE_HTTPS_FILTERING + 1, +#else + 0, #endif }, {