more tests, fix varargs invocation

This commit is contained in:
Florian Dold 2018-01-31 17:57:21 +01:00
parent 3859a40f24
commit 458b317727
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -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;
}