diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-06-22 19:48:18 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-06-22 19:48:18 +0200 |
commit | 9fb6ea320337fba12437f70c3172917a2e76cb3b (patch) | |
tree | 28154d16390de4e99ca92ed7d4ab8eade3531835 /src/exchange-tools/taler-auditor-offline.c | |
parent | ba5af82db137c465a84e44b85aeb7aa6fed0c957 (diff) |
fix auditor-offline issue
Diffstat (limited to 'src/exchange-tools/taler-auditor-offline.c')
-rw-r--r-- | src/exchange-tools/taler-auditor-offline.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/exchange-tools/taler-auditor-offline.c b/src/exchange-tools/taler-auditor-offline.c index 17ae10834..81e2bfeb7 100644 --- a/src/exchange-tools/taler-auditor-offline.c +++ b/src/exchange-tools/taler-auditor-offline.c @@ -884,9 +884,9 @@ parse_keys (const char *command_name) { json_error_t err; - out = json_loadf (stdin, - JSON_REJECT_DUPLICATES, - &err); + in = json_loadf (stdin, + JSON_REJECT_DUPLICATES, + &err); if (NULL == in) { fprintf (stderr, @@ -958,7 +958,11 @@ do_show (char *const *args) keys = parse_keys ("show"); if (NULL == keys) + { + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Showing failed: no valid input\n"); return; + } if (GNUNET_OK != GNUNET_JSON_parse (keys, spec, @@ -1155,7 +1159,11 @@ do_sign (char *const *args) keys = parse_keys ("sign"); if (NULL == keys) + { + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Signing failed: no valid input\n"); return; + } if (GNUNET_OK != load_offline_key (GNUNET_NO)) { |