oconfig.c: Fix compiler warning.
[collection4.git] / action_graph.c
index b5b3163..a0f257e 100644 (file)
 #include <fcgiapp.h>
 #include <fcgi_stdio.h>
 
-struct data_source_s
-{
-  char *file;
-  char *name;
-  char *legend;
-  double scale;
-  _Bool nan_to_zero;
-  _Bool draw_area;
-  uint32_t color;
-};
-typedef struct data_source_s data_source_t;
-
-struct graph_def_s
-{
-  data_source_t *data_sources;
-  size_t data_sources_num;
-
-  _Bool stack;
-
-  int def_num;
-};
-typedef struct graph_def_s graph_def_t;
-
 static void emulate_graph (int argc, char **argv) /* {{{ */
 {
   int i;
@@ -110,9 +87,9 @@ int action_graph (void) /* {{{ */
   rrd_info_t *info;
   int status;
 
-  cfg = graph_get_selected ();
+  cfg = gl_graph_get_selected ();
   if (cfg == NULL)
-    OUTPUT_ERROR ("graph_get_selected () failed.\n");
+    OUTPUT_ERROR ("gl_graph_get_selected () failed.\n");
 
   inst = inst_get_selected (cfg);
   if (inst == NULL)
@@ -127,11 +104,11 @@ int action_graph (void) /* {{{ */
   array_append (args, "--imgformat");
   array_append (args, "PNG");
 
-  status = gl_instance_get_rrdargs (cfg, inst, args);
+  status = inst_get_rrdargs (cfg, inst, args);
   if (status != 0)
   {
     array_destroy (args);
-    OUTPUT_ERROR ("gl_instance_get_rrdargs failed with status %i.\n", status);
+    OUTPUT_ERROR ("inst_get_rrdargs failed with status %i.\n", status);
   }
 
   rrd_clear_error ();