From: James Jones Date: Thu, 9 Mar 2023 20:32:48 +0000 (-0600) Subject: Skip the *call* graph (not caller) for xlat_init() (#4923) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee6bb345a2a55f6d772380fcda0920be8d3de925;p=thirdparty%2Ffreeradius-server.git Skip the *call* graph (not caller) for xlat_init() (#4923) --- diff --git a/src/lib/unlang/xlat.h b/src/lib/unlang/xlat.h index 5f38ba7ba4a..b44c0aa80ef 100644 --- a/src/lib/unlang/xlat.h +++ b/src/lib/unlang/xlat.h @@ -468,6 +468,7 @@ void _xlat_async_thread_instantiate_set(xlat_t const *xlat, void xlat_unregister(char const *name); void xlat_unregister_module(dl_module_inst_t const *inst); int xlat_register_redundant(CONF_SECTION *cs); +/** @hidecallgraph */ int xlat_init(void); void xlat_free(void); diff --git a/src/lib/unlang/xlat_builtin.c b/src/lib/unlang/xlat_builtin.c index 6e0e8a91be5..d5b9b48c768 100644 --- a/src/lib/unlang/xlat_builtin.c +++ b/src/lib/unlang/xlat_builtin.c @@ -4108,6 +4108,8 @@ static int xlat_protocol_init(void) * @return * - 0 on success. * - -1 on failure. + * + * @hidecallgraph */ int xlat_init(void) {