summaryrefslogtreecommitdiff
path: root/src/exchange-tools
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:32:15 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:50:51 +0200
commit6eb32a65bf67438159fb1b6e3cf404b8721784ee (patch)
tree9fee232fe54f0b5dba13d1413f6ee063dae08f97 /src/exchange-tools
parent49f466df401259248c5d187374655492d4b4eec7 (diff)
downloadexchange-6eb32a65bf67438159fb1b6e3cf404b8721784ee.tar.gz
exchange-6eb32a65bf67438159fb1b6e3cf404b8721784ee.tar.bz2
exchange-6eb32a65bf67438159fb1b6e3cf404b8721784ee.zip
fix error reporting/handling
Diffstat (limited to 'src/exchange-tools')
-rw-r--r--src/exchange-tools/taler-exchange-keyup.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c
index a3e3bce29..0ea661d49 100644
--- a/src/exchange-tools/taler-exchange-keyup.c
+++ b/src/exchange-tools/taler-exchange-keyup.c
@@ -1016,9 +1016,9 @@ create_wire_fee_for_method (void *cls,
af->wire_fee.currency)) )
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "Invalid or missing amount in `%s' under `%s'\n",
- section,
- opt);
+ "Invalid or missing amount for option `%s' in section `%s'\n",
+ opt,
+ section);
*ret = GNUNET_SYSERR;
GNUNET_free (opt);
break;
@@ -1038,9 +1038,9 @@ create_wire_fee_for_method (void *cls,
af->closing_fee.currency)) )
{
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "Invalid or missing amount in `%s' under `%s'\n",
- section,
- opt);
+ "Invalid or missing amount for option `%s' in section `%s'\n",
+ opt,
+ section);
*ret = GNUNET_SYSERR;
GNUNET_free (opt);
break;