fix #7105 (for exchange)

This commit is contained in:
Christian Grothoff 2021-11-25 23:23:59 +01:00
parent dc4827ea20
commit f493122033
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 2 additions and 2 deletions

View File

@ -779,7 +779,7 @@ decode_keys_json (const json_t *resp_obj,
EXITIF (NULL == (sign_keys_array =
json_object_get (resp_obj,
"signkeys")));
EXITIF (JSON_ARRAY != json_typeof (sign_keys_array));
EXITIF (! json_is_array (sign_keys_array));
if (0 != (key_data->num_sign_keys =
json_array_size (sign_keys_array)))
{

View File

@ -40,7 +40,7 @@ static const struct GNUNET_OS_ProjectData taler_pd = {
.homepage = "http://www.gnu.org/s/taler/",
.config_file = "taler.conf",
.user_config_file = "~/.config/taler.conf",
.version = PACKAGE_VERSION,
.version = PACKAGE_VERSION "-" VCS_VERSION,
.is_gnu = 1,
.gettext_domain = "taler",
.gettext_path = NULL,