aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/mhd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/mhd.c b/src/util/mhd.c
index 2f262340f..6f6b38d35 100644
--- 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;