aboutsummaryrefslogtreecommitdiff
path: root/src/json/json.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/json/json.c')
-rw-r--r--src/json/json.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/json/json.c b/src/json/json.c
index 503702962..d55189804 100644
--- a/src/json/json.c
+++ b/src/json/json.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet 2 This file is part of GNUnet
3 Copyright (C) 2014-2017 GNUnet e.V. 3 Copyright (C) 2014-2017, 2021 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -70,6 +70,11 @@ GNUNET_JSON_parse (const json_t *root,
70 { 70 {
71 if (NULL != error_json_name) 71 if (NULL != error_json_name)
72 *error_json_name = spec[i].field; 72 *error_json_name = spec[i].field;
73 else
74 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
75 "Parsing failed for field `%s:%u`\n",
76 spec[i].field,
77 i);
73 if (NULL != error_line) 78 if (NULL != error_line)
74 *error_line = i; 79 *error_line = i;
75 GNUNET_JSON_parse_free (spec); 80 GNUNET_JSON_parse_free (spec);