From 401a1f82efb39a806c2301f8938557fef14ea174 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 17 Jan 2020 00:19:23 +0100 Subject: use strcasecmp for methods --- src/exchange/taler-exchange-httpd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index b2c9e4d84..1b9333df8 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -425,15 +425,15 @@ handle_mhd_request (void *cls, /* The URL is a match! What we now do depends on the method. */ - if (0 == strcmp (method, MHD_HTTP_METHOD_OPTIONS)) + if (0 == strcasecmp (method, MHD_HTTP_METHOD_OPTIONS)) { GNUNET_async_scope_restore (&old_scope); return TALER_MHD_reply_cors_preflight (connection); } if ( (NULL == rh->method) || - (0 == strcmp (method, - rh->method)) ) + (0 == strcasecmp (method, + rh->method)) ) { /* FIXME: consider caching 'rh' in '**connection_cls' to avoid repeated lookup! */ -- cgit v1.2.3