From 09f5454fa130d90ea8c2d2727c3fd9417b03b6b6 Mon Sep 17 00:00:00 2001 From: obarun <eric@obarun.org> Date: Mon, 30 Jan 2023 18:28:29 +1100 Subject: [PATCH] swap graph_build_service_from_list function (and possible remove) --- src/include/66/graph.h | 3 ++- src/include/66/service.h | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/66/graph.h b/src/include/66/graph.h index 9eb63769..d47c1a53 100644 --- a/src/include/66/graph.h +++ b/src/include/66/graph.h @@ -33,6 +33,7 @@ extern int graph_compute_dependencies(graph_t *g, char const *vertex, char const extern int graph_build_service_bytree(graph_t *g, char const *tree, uint8_t what, uint8_t is_supervised) ; extern int graph_build_service_bytree_from_src(graph_t *g, char const *src, uint8_t what) ; - +/** possible remove of it */ +extern int graph_build_service_from_sastr(graph_t *graph, stralloc *sa, char const *base) ; #endif diff --git a/src/include/66/service.h b/src/include/66/service.h index eb16dccc..186ddd32 100644 --- a/src/include/66/service.h +++ b/src/include/66/service.h @@ -376,8 +376,7 @@ extern void service_graph_build(graph_t *g, resolve_service_t *ares, unsigned in extern int service_is(ss_state_t *ste, uint32_t flag) ; -/** possible remove of it */ -extern int graph_build_service_from_list(char const *const *list, char const *base, graph_t *graph, resolve_service_t *ares, uint8_t requiredby) ; + -- GitLab