diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2023-09-01 02:00:01 +0200 |
---|---|---|
committer | Christian Grothoff <grothoff@gnunet.org> | 2023-09-01 02:00:01 +0200 |
commit | 52c53916a6d71f4c7b2315d808ee189b8ff80a75 (patch) | |
tree | 10b5fefff5ba4a8bd879353c206fa3db8ce22039 /src/json | |
parent | 73a555fb38eb64d36322783174f7b5a6008ddbe1 (diff) |
towards adjusting taler-auditor-offline to new /keys format (still fails in signature verification)
Diffstat (limited to 'src/json')
-rw-r--r-- | src/json/json_helper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c index 2a161eaf0..9d7df0900 100644 --- a/src/json/json_helper.c +++ b/src/json/json_helper.c @@ -677,6 +677,7 @@ parse_denom_pub_cipher (void *cls, GNUNET_break_op (0); return GNUNET_SYSERR; } + denom_pub->cipher = cipher; return GNUNET_OK; } case TALER_DENOMINATION_CS: @@ -697,10 +698,12 @@ parse_denom_pub_cipher (void *cls, GNUNET_break_op (0); return GNUNET_SYSERR; } + denom_pub->cipher = cipher; return GNUNET_OK; } default: GNUNET_break_op (0); + denom_pub->cipher = 0; return GNUNET_SYSERR; } } |