diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-04-08 20:20:35 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-04-08 20:20:35 +0200 |
commit | 5f67d984b2c04fce8bfa471db3e48e52680cf613 (patch) | |
tree | 173dc3e6645bede178b908990a05d08b34eb8249 /src | |
parent | d27f7f34b4a43701b8a46226ee56a2a40c671754 (diff) |
fix json_pack format string
Diffstat (limited to 'src')
-rw-r--r-- | src/exchange/taler-exchange-httpd_keystate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c index 41c004593..a2025c9d5 100644 --- a/src/exchange/taler-exchange-httpd_keystate.c +++ b/src/exchange/taler-exchange-httpd_keystate.c @@ -789,7 +789,7 @@ TEH_KS_acquire_ (const char *location) GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No valid signing key found!\n"); - keys = json_pack ("{s:o, s:o, s:o, s:o, s:o, s:o, s:o}", + keys = json_pack ("{s:o, s:o, s:o, s:o, s:o, s:o, s:o, s:o}", "master_public_key", GNUNET_JSON_from_data_auto (&TEH_master_public_key), "signkeys", key_state->sign_keys_array, |