From 40b828ba232eaa7214ccb410e0d8899b1198f6be Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 5 Aug 2021 21:23:29 +0200 Subject: -strncasecmp for the win --- src/bank-lib/taler-exchange-wire-gateway-client.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/bank-lib/taler-exchange-wire-gateway-client.c b/src/bank-lib/taler-exchange-wire-gateway-client.c index 2d2fe4366..6159bca3e 100644 --- a/src/bank-lib/taler-exchange-wire-gateway-client.c +++ b/src/bank-lib/taler-exchange-wire-gateway-client.c @@ -1,6 +1,6 @@ /* This file is part of TALER - Copyright (C) 2017-2020 Taler Systems SA + Copyright (C) 2017-2021 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -650,8 +650,9 @@ run (void *cls, } if ( (NULL == auth.wire_gateway_url) || (0 == strlen (auth.wire_gateway_url)) || - (0 != strcasecmp ("http", - auth.wire_gateway_url)) ) + (0 != strncasecmp ("http", + auth.wire_gateway_url, + strlen ("http"))) ) { fprintf (stderr, "Error: Invalid wire gateway URL `%s' configured.\n", -- cgit v1.2.3