summaryrefslogtreecommitdiff
path: root/src/util/json.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-28 20:31:28 +0100
committerChristian Grothoff <christian@grothoff.org>2015-01-28 20:31:28 +0100
commitbc8f6e81a4d737625e05e5e268d0d682489873d5 (patch)
treeb706d187c7627c7522ff1ef1eb8663dc11c88d17 /src/util/json.c
parent62d3d352502f5b1d109b18456a87c704a70fcca5 (diff)
downloadexchange-bc8f6e81a4d737625e05e5e268d0d682489873d5.tar.gz
exchange-bc8f6e81a4d737625e05e5e268d0d682489873d5.tar.bz2
exchange-bc8f6e81a4d737625e05e5e268d0d682489873d5.zip
move data_to_string_alloc to GNUnet
Diffstat (limited to 'src/util/json.c')
-rw-r--r--src/util/json.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/json.c b/src/util/json.c
index 120e1be5c..fecf0c5af 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;