X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fgraph_list.c;fp=src%2Fgraph_list.c;h=ed8d41a78cf2f1cce4bf73ed9de7c21902c1a880;hb=60f9e98201a0a261f2a8c002e928b863d1fe611a;hp=02c7de8db75f0b2c0fad8042b0cb7abf498a4ae1;hpb=eadd1b625c44ad93766ca43372a961a52ec263e9;p=collection4.git diff --git a/src/graph_list.c b/src/graph_list.c index 02c7de8..ed8d41a 100644 --- a/src/graph_list.c +++ b/src/graph_list.c @@ -780,6 +780,17 @@ int gl_config_submit (void) /* {{{ */ return (0); } /* }}} int graph_config_submit */ +int gl_register_ident (const char *provider, const graph_ident_t *ident) +{ + char *ident_str = ident_to_string (ident); + + fprintf (stderr, "gl_register_ident (provider = %s, ident = %s)\n", + provider, ident_str); + + free (ident_str); + return (0); +} /* }}} int gl_register_ident */ + int gl_graph_get_all (_Bool include_dynamic, /* {{{ */ graph_callback_t callback, void *user_data) {