commit 170402203ae8ba7060da8149de47c875ff4d1946 parent 7373bbc5c8a0fde4868ca25cfcada29b7b2520da Author: Christian Grothoff <christian@grothoff.org> Date: Wed, 1 Dec 2021 17:56:47 +0100 make check case-insensitive Diffstat:
| M | src/util/mhd.c | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/util/mhd.c b/src/util/mhd.c @@ -42,11 +42,11 @@ TALER_mhd_is_https (struct MHD_Connection *connection) if (NULL != forwarded_proto) { - if (0 == strcmp (forwarded_proto, - "https")) + if (0 == strcasecmp (forwarded_proto, + "https")) return GNUNET_YES; - if (0 == strcmp (forwarded_proto, - "http")) + if (0 == strcasecmp (forwarded_proto, + "http")) return GNUNET_NO; GNUNET_break (0); return GNUNET_SYSERR;