exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 401a1f82efb39a806c2301f8938557fef14ea174
parent d61c2e400ac07574fc326c8d2be6f51be7c2a25c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 17 Jan 2020 00:19:23 +0100

use strcasecmp for methods

Diffstat:
Msrc/exchange/taler-exchange-httpd.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 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! */