summaryrefslogtreecommitdiff
path: root/src/exchange
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-09-17 10:03:48 +0200
committerChristian Grothoff <christian@grothoff.org>2019-09-17 10:03:48 +0200
commita18011012d27a183965baf5c95110598758b757f (patch)
treebeea600a3abc2026b0eb1f1105b9381aaadb2e23 /src/exchange
parent7914d7c7e304efe9cc84ff6d01e52f6db28f4188 (diff)
downloadexchange-a18011012d27a183965baf5c95110598758b757f.tar.gz
exchange-a18011012d27a183965baf5c95110598758b757f.tar.bz2
exchange-a18011012d27a183965baf5c95110598758b757f.zip
make URLs case-sensitive
Diffstat (limited to 'src/exchange')
-rw-r--r--src/exchange/taler-exchange-httpd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index cfeaf0ee8..32ed71c7d 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -1,6 +1,6 @@
/*
This file is part of TALER
- Copyright (C) 2014, 2015, 2016 Inria and GNUnet e.V.
+ Copyright (C) 2014, 2015, 2016, 2019 Inria and GNUnet e.V.
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -454,8 +454,8 @@ handle_mhd_request (void *cls,
for (unsigned int i = 0; NULL != handlers[i].url; i++)
{
rh = &handlers[i];
- if ( (0 == strcasecmp (url,
- rh->url)) &&
+ if ( (0 == strcmp (url,
+ rh->url)) &&
( (NULL == rh->method) ||
(0 == strcasecmp (method,
rh->method)) ) )
@@ -515,7 +515,7 @@ parse_port_config (const char *section,
return GNUNET_SYSERR;
}
- if (0 == strcmp (serve_type, "tcp"))
+ if (0 == strcasecmp (serve_type, "tcp"))
{
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_number (cfg,