diff options
Diffstat (limited to 'src/util/json.c')
-rw-r--r-- | src/util/json.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/json.c b/src/util/json.c index d66c95c43..120e1be5c 100644 --- a/src/util/json.c +++ b/src/util/json.c | |||
@@ -112,7 +112,8 @@ TALER_JSON_from_sig (const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose, | |||
112 | el = json_integer ((json_int_t) ntohl (purpose->purpose)); | 112 | el = json_integer ((json_int_t) ntohl (purpose->purpose)); |
113 | json_object_set_new (root, "purpose", el); | 113 | json_object_set_new (root, "purpose", el); |
114 | 114 | ||
115 | el = TALER_JSON_from_data (signature, sizeof (struct GNUNET_CRYPTO_EddsaSignature)); | 115 | el = TALER_JSON_from_data (signature, |
116 | sizeof (struct GNUNET_CRYPTO_EddsaSignature)); | ||
116 | json_object_set_new (root, "sig", el); | 117 | json_object_set_new (root, "sig", el); |
117 | 118 | ||
118 | return root; | 119 | return root; |