exchange

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

commit 14b57d3e13c357b5fdcc06701fe45a5d4a462135
parent 509657bfef59221a6a113c49330ee06ed66c9da9
Author: Florian Dold <florian@dold.me>
Date:   Tue, 19 Apr 2022 18:37:48 +0200

find extensions case-insensitively

Diffstat:
Msrc/extensions/extensions.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/extensions/extensions.c b/src/extensions/extensions.c @@ -139,7 +139,7 @@ TALER_extensions_get_by_name ( NULL != it; it = it->next) { - if (0 == strcmp (name, it->name)) + if (0 == strcasecmp (name, it->name)) return it; } /* No extension found. */