diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-01-31 17:57:21 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-01-31 17:57:21 +0100 |
commit | 458b317727a2babd97572e197fd920f98059a39f (patch) | |
tree | 68b16096728952873c1f5b1f7f7da5106987fe9c /src/util | |
parent | 3859a40f24e27ae6b825f0f4163d43bc95cc10d3 (diff) |
more tests, fix varargs invocation
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/util.c b/src/util/util.c index 00b67e25e..c31dc1e9b 100644 --- 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; } |