summaryrefslogtreecommitdiff
path: root/src/json/json_helper.c
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-09-01 02:00:01 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-09-01 02:00:01 +0200
commit52c53916a6d71f4c7b2315d808ee189b8ff80a75 (patch)
tree10b5fefff5ba4a8bd879353c206fa3db8ce22039 /src/json/json_helper.c
parent73a555fb38eb64d36322783174f7b5a6008ddbe1 (diff)
downloadexchange-52c53916a6d71f4c7b2315d808ee189b8ff80a75.tar.gz
exchange-52c53916a6d71f4c7b2315d808ee189b8ff80a75.tar.bz2
exchange-52c53916a6d71f4c7b2315d808ee189b8ff80a75.zip
towards adjusting taler-auditor-offline to new /keys format (still fails in signature verification)
Diffstat (limited to 'src/json/json_helper.c')
-rw-r--r--src/json/json_helper.c3
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;
}
}