exchange

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

commit 458b317727a2babd97572e197fd920f98059a39f
parent 3859a40f24e27ae6b825f0f4163d43bc95cc10d3
Author: Florian Dold <florian.dold@gmail.com>
Date:   Wed, 31 Jan 2018 17:57:21 +0100

more tests, fix varargs invocation

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

diff --git a/src/util/util.c b/src/util/util.c @@ -453,7 +453,7 @@ TALER_url_absolute_mhd (struct MHD_Connection *connection, } va_start (args, path); - result = TALER_url_absolute_raw (proto, host, prefix, path, args); + result = url_absolute_raw_va (proto, host, prefix, path, args); va_end (args); return result; }