MINOR: log: make resolve_logger() static

There is no need to expose this internal function, let's make it static.
This commit is contained in:
Aurelien DARRAGON 2024-05-14 16:53:52 +02:00
parent db47471155
commit 42139fa16e

View File

@ -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;