summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-10-10 10:29:54 +0200
committerChristian Grothoff <christian@grothoff.org>2019-10-10 10:30:10 +0200
commit706f164facfb51d9e84cc5b3207909adafd54399 (patch)
treeba7bb77712e79b6198c7a1134c30af114d1712bd /src/exchange/taler-exchange-httpd.c
parentb68223569fbe099adf90647b2068875551c6e488 (diff)
downloadexchange-706f164facfb51d9e84cc5b3207909adafd54399.tar.gz
exchange-706f164facfb51d9e84cc5b3207909adafd54399.tar.bz2
exchange-706f164facfb51d9e84cc5b3207909adafd54399.zip
strcmp
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
-rw-r--r--src/exchange/taler-exchange-httpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index 32ed71c7d..8b89cf971 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -457,8 +457,8 @@ handle_mhd_request (void *cls,
if ( (0 == strcmp (url,
rh->url)) &&
( (NULL == rh->method) ||
- (0 == strcasecmp (method,
- rh->method)) ) )
+ (0 == strcmp (method,
+ rh->method)) ) )
{
/* FIXME: consider caching 'rh' in '**connection_cls' to
avoid repeated lookup! */