From e616449c23b1320b1f18f37a8a6f4b0e0b9c458d Mon Sep 17 00:00:00 2001 From: Marc Fournier Date: Tue, 1 Apr 2014 01:10:47 +0200 Subject: [PATCH] curl_json: also allow long callback names. This is basically the same as 2f392819, which got applied to the curl_xml plugin a few months ago. Fixes #582. --- src/curl_json.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/curl_json.c b/src/curl_json.c index 1ef8a262..42a3a10c 100644 --- a/src/curl_json.c +++ b/src/curl_json.c @@ -714,7 +714,7 @@ static int cj_config_add_url (oconfig_item_t *ci) /* {{{ */ if (status == 0) { user_data_t ud; - char cb_name[DATA_MAX_NAME_LEN]; + char *cb_name; if (db->instance == NULL) db->instance = strdup("default"); @@ -726,11 +726,12 @@ static int cj_config_add_url (oconfig_item_t *ci) /* {{{ */ ud.data = (void *) db; ud.free_func = cj_free; - ssnprintf (cb_name, sizeof (cb_name), "curl_json-%s-%s", + cb_name = ssnprintf_alloc ("curl_json-%s-%s", db->instance, db->url ? db->url : db->sock); - plugin_register_complex_read (/* group = */ NULL, cb_name, cj_read, + plugin_register_complex_read (/* group = */ "curl_json", cb_name, cj_read, /* interval = */ NULL, &ud); + sfree (cb_name); } else { -- 2.11.0