From: Florian Forster Date: Wed, 8 Sep 2010 09:26:39 +0000 (+0200) Subject: graph_def_json action: Use "graph_def_to_json" rather than "def_to_json". X-Git-Tag: v4.0.0~42 X-Git-Url: https://git.octo.it/?p=collection4.git;a=commitdiff_plain;h=a4a5b5e992da52779d9e1c8870f0c7df6b199d56 graph_def_json action: Use "graph_def_to_json" rather than "def_to_json". --- diff --git a/src/action_graph_def_json.c b/src/action_graph_def_json.c index ea30ad9..684ad7a 100644 --- a/src/action_graph_def_json.c +++ b/src/action_graph_def_json.c @@ -32,7 +32,6 @@ #include "action_graph_def_json.h" #include "common.h" #include "graph.h" -#include "graph_def.h" #include "graph_list.h" #include "utils_cgi.h" @@ -51,7 +50,6 @@ static void write_callback (__attribute__((unused)) void *ctx, /* {{{ */ int action_graph_def_json (void) /* {{{ */ { graph_config_t *cfg; - graph_def_t *def; yajl_gen_config handler_config; yajl_gen handler; @@ -64,10 +62,6 @@ int action_graph_def_json (void) /* {{{ */ if (cfg == NULL) return (ENOMEM); - def = graph_get_defs (cfg); - if (def == NULL) - return (EINVAL); - memset (&handler_config, 0, sizeof (handler_config)); handler_config.beautify = 1; handler_config.indentString = " "; @@ -92,10 +86,9 @@ int action_graph_def_json (void) /* {{{ */ time_buffer); printf ("\n"); - status = def_to_json (def, handler); + status = graph_def_to_json (cfg, handler); graph_destroy (cfg); - def = NULL; yajl_gen_free (handler); return (status);