From 43edf0a4677ebb90f0c2954de4ef83f4664853e1 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 28 Jun 2008 14:19:05 +0000 Subject: [PATCH] Protocol detection is done case-insensitive, fix assertion to do the same. Yay for Privoxy-Regression-Test and zzuf. --- cgisimple.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cgisimple.c b/cgisimple.c index 9448bf3b..30738314 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1,4 +1,4 @@ -const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.84 2008/05/26 16:16:55 fabiankeil Exp $"; +const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.85 2008/05/26 17:30:55 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgisimple.c,v $ @@ -36,6 +36,10 @@ const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.84 2008/05/26 16:16:55 fabian * * Revisions : * $Log: cgisimple.c,v $ + * Revision 1.85 2008/05/26 17:30:55 fabiankeil + * Provide an OpenSearch Description to access the + * show-url-info page through "search engine plugins". + * * Revision 1.84 2008/05/26 16:16:55 fabiankeil * Spell error correctly. * @@ -1534,7 +1538,7 @@ jb_err cgi_show_url_info(struct client_state *csp, memset(url_to_query, '\0', sizeof(url_to_query)); err = parse_http_url(url_param, url_to_query, REQUIRE_PROTOCOL); - assert((err != JB_ERR_OK) || (url_to_query->ssl == !strncmp(url_param, "https://", 8))); + assert((err != JB_ERR_OK) || (url_to_query->ssl == !strncmpic(url_param, "https://", 8))); free(url_param); -- 2.39.2