commit 90adbb36f71224fe4ae8ebace1bc091c4651734f
parent 6bfe1eb75609fbcb6a8ef1b160d64140981c71e2
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 16 Jul 2020 20:53:50 +0200
fix FTBFS:
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/merchant-tools/taler-merchant-setup-reserve.c b/src/merchant-tools/taler-merchant-setup-reserve.c
@@ -233,12 +233,12 @@ main (int argc,
"auth",
"USERNAME:PASSWORD",
"use the given USERNAME and PASSWORD for client authentication",
- &userpass)),
+ &userpass),
GNUNET_GETOPT_option_string ('C',
"cert",
"CERTFILE",
"name of the TLS client certificate file",
- &certfile)),
+ &certfile),
GNUNET_GETOPT_option_mandatory (
GNUNET_GETOPT_option_string ('e',
"exchange-url",
@@ -249,7 +249,7 @@ main (int argc,
"key",
"KEYFILE",
"file with the private TLS key for TLS client authentication",
- &keyfile)),
+ &keyfile),
GNUNET_GETOPT_option_mandatory (
GNUNET_GETOPT_option_string ('m',
"merchant-url",
@@ -260,12 +260,12 @@ main (int argc,
"pass",
"KEYFILEPASSPHRASE",
"passphrase needed to decrypt the TLS client private key file",
- &keypass)),
+ &keypass),
GNUNET_GETOPT_option_string ('t',
"type",
"CERTTYPE",
"type of the TLS client certificate, defaults to PEM if not specified",
- &certtype)),
+ &certtype),
GNUNET_GETOPT_option_mandatory (
GNUNET_GETOPT_option_string ('w',
"wire-method",