summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8db49fe)
raw | patch | inline | side by side (parent: 8db49fe)
author | Florian Forster <octo@verplant.org> | |
Wed, 8 Sep 2010 09:26:39 +0000 (11:26 +0200) | ||
committer | Florian Forster <octo@verplant.org> | |
Wed, 8 Sep 2010 09:26:39 +0000 (11:26 +0200) |
src/action_graph_def_json.c | patch | blob | history |
index ea30ad9a38a025ef441220627cd52566a8206479..684ad7a0db850ede798cd31069e5455ae912619f 100644 (file)
#include "action_graph_def_json.h"
#include "common.h"
#include "graph.h"
-#include "graph_def.h"
#include "graph_list.h"
#include "utils_cgi.h"
int action_graph_def_json (void) /* {{{ */
{
graph_config_t *cfg;
- graph_def_t *def;
yajl_gen_config handler_config;
yajl_gen handler;
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 = " ";
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);