exchange

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

commit 7ad562af5596289272cd051e1eb7ea72612147c1
parent 45a7b98d4b06489310691e9a47d3f2c5b2bc450e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  8 Dec 2019 22:48:33 +0100

do not return 0-terminator

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

diff --git a/src/exchange/taler-exchange-httpd_terms.c b/src/exchange/taler-exchange-httpd_terms.c @@ -231,7 +231,7 @@ TEH_handler_terms (struct TEH_RequestHandler *rh, .mime_type = "text/plain", .terms = "Terms of service not configured", .language = "en", - .terms_size = sizeof ("Terms of service not configured") + .terms_size = strlen ("Terms of service not configured") }; t = &none; }