From 42139fa16e043201e365ba533842d081e2d7dbbf Mon Sep 17 00:00:00 2001 From: Aurelien DARRAGON Date: Tue, 14 May 2024 16:53:52 +0200 Subject: [PATCH] MINOR: log: make resolve_logger() static There is no need to expose this internal function, let's make it static. --- src/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.c b/src/log.c index a6d074915..d4e493271 100644 --- a/src/log.c +++ b/src/log.c @@ -1412,7 +1412,7 @@ static int postcheck_log_backend(struct proxy *be) * could also be set when no error occurred to report a diag warning), thus is * up to the caller to check it and to free it. */ -int resolve_logger(struct logger *logger, char **msg) +static int resolve_logger(struct logger *logger, char **msg) { struct log_target *target = &logger->target; int err_code = ERR_NONE;