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 120e1be5..fecf0c5a 100644 --- a/src/util/json.c +++ b/src/util/json.c @@ -133,7 +133,8 @@ TALER_JSON_from_data (const void *data, size_t size) { char *buf; json_t *json; - buf = TALER_data_to_string_alloc (data, size); + + buf = GNUNET_STRINGS_data_to_string_alloc (data, size); json = json_string (buf); GNUNET_free (buf); return json; |