aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-16 20:53:50 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-16 20:53:50 +0200
commit90adbb36f71224fe4ae8ebace1bc091c4651734f (patch)
tree2cd5fc4f650ac43fbe8d3817f4c2030a670e3529
parent6bfe1eb75609fbcb6a8ef1b160d64140981c71e2 (diff)
downloadmerchant-90adbb36f71224fe4ae8ebace1bc091c4651734f.tar.gz
merchant-90adbb36f71224fe4ae8ebace1bc091c4651734f.zip
fix FTBFS:
-rw-r--r--src/merchant-tools/taler-merchant-setup-reserve.c10
1 files 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
index e46c3a3e..66ece5af 100644
--- 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,
233 "auth", 233 "auth",
234 "USERNAME:PASSWORD", 234 "USERNAME:PASSWORD",
235 "use the given USERNAME and PASSWORD for client authentication", 235 "use the given USERNAME and PASSWORD for client authentication",
236 &userpass)), 236 &userpass),
237 GNUNET_GETOPT_option_string ('C', 237 GNUNET_GETOPT_option_string ('C',
238 "cert", 238 "cert",
239 "CERTFILE", 239 "CERTFILE",
240 "name of the TLS client certificate file", 240 "name of the TLS client certificate file",
241 &certfile)), 241 &certfile),
242 GNUNET_GETOPT_option_mandatory ( 242 GNUNET_GETOPT_option_mandatory (
243 GNUNET_GETOPT_option_string ('e', 243 GNUNET_GETOPT_option_string ('e',
244 "exchange-url", 244 "exchange-url",
@@ -249,7 +249,7 @@ main (int argc,
249 "key", 249 "key",
250 "KEYFILE", 250 "KEYFILE",
251 "file with the private TLS key for TLS client authentication", 251 "file with the private TLS key for TLS client authentication",
252 &keyfile)), 252 &keyfile),
253 GNUNET_GETOPT_option_mandatory ( 253 GNUNET_GETOPT_option_mandatory (
254 GNUNET_GETOPT_option_string ('m', 254 GNUNET_GETOPT_option_string ('m',
255 "merchant-url", 255 "merchant-url",
@@ -260,12 +260,12 @@ main (int argc,
260 "pass", 260 "pass",
261 "KEYFILEPASSPHRASE", 261 "KEYFILEPASSPHRASE",
262 "passphrase needed to decrypt the TLS client private key file", 262 "passphrase needed to decrypt the TLS client private key file",
263 &keypass)), 263 &keypass),
264 GNUNET_GETOPT_option_string ('t', 264 GNUNET_GETOPT_option_string ('t',
265 "type", 265 "type",
266 "CERTTYPE", 266 "CERTTYPE",
267 "type of the TLS client certificate, defaults to PEM if not specified", 267 "type of the TLS client certificate, defaults to PEM if not specified",
268 &certtype)), 268 &certtype),
269 GNUNET_GETOPT_option_mandatory ( 269 GNUNET_GETOPT_option_mandatory (
270 GNUNET_GETOPT_option_string ('w', 270 GNUNET_GETOPT_option_string ('w',
271 "wire-method", 271 "wire-method",