diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-02-11 11:55:59 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-02-11 11:55:59 +0100 |
commit | 4472cbaf9d1b17733caee421593a5229215df1a2 (patch) | |
tree | 4f0b1245aae3bbbc10ab978e997faad4c5bf5df5 /src/json/json_helper.c | |
parent | 3b9d67a6f8a501bed0a24354bdba1b97a77d1320 (diff) |
-simplify structures
Diffstat (limited to 'src/json/json_helper.c')
-rw-r--r-- | src/json/json_helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c index c304bf22f..7c5f7dde2 100644 --- a/src/json/json_helper.c +++ b/src/json/json_helper.c @@ -733,11 +733,11 @@ parse_exchange_withdraw_values (void *cls, struct GNUNET_JSON_Specification ispec[] = { GNUNET_JSON_spec_fixed ( "r_pub_0", - &ewv->details.cs_values.r_pub_pair.r_pub[0], + &ewv->details.cs_values.r_pub[0], sizeof (struct GNUNET_CRYPTO_CsRPublic)), GNUNET_JSON_spec_fixed ( "r_pub_1", - &ewv->details.cs_values.r_pub_pair.r_pub[1], + &ewv->details.cs_values.r_pub[1], sizeof (struct GNUNET_CRYPTO_CsRPublic)), GNUNET_JSON_spec_end () }; |