commit 40b828ba232eaa7214ccb410e0d8899b1198f6be
parent bd7e44720b212defebb7df47f85d5f393b2cb108
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 5 Aug 2021 21:23:29 +0200
-strncasecmp for the win
Diffstat:
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
@@ -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",