MINOR: sink/log: fix some typos around postparsing logic

Fixing some typos that have been overlooked during the recent log/sink
API improvements. Using this patch to make sink_new_from_logsrv() static
since it is not used outside of sink.c
This commit is contained in:
Aurelien DARRAGON 2023-09-13 17:34:58 +02:00 committed by Christopher Faulet
parent e5d23d8676
commit cb01da8d12

View File

@ -835,11 +835,11 @@ static struct sink *sink_new_ringbuf(const char *id, const char *description,
goto err; goto err;
} }
/* link sink to proxy */
sink->forward_px = p; sink->forward_px = p;
/* link sink forward_target to proxy */ /* link proxy to sink */
p->parent = sink; p->parent = sink;
sink->forward_px = p;
return sink; return sink;
@ -1162,7 +1162,7 @@ int cfg_parse_ring(const char *file, int linenum, char **args, int kwm)
return err_code; return err_code;
} }
/* Creates an new sink buffer from a log server. /* Creates a new sink buffer from a log server.
* *
* It uses the logsrvaddress to declare a forward * It uses the logsrvaddress to declare a forward
* server for this buffer. And it initializes the * server for this buffer. And it initializes the
@ -1176,7 +1176,7 @@ int cfg_parse_ring(const char *file, int linenum, char **args, int kwm)
* Note: the sink is created using the name * Note: the sink is created using the name
* specified into logsrv->ring_name * specified into logsrv->ring_name
*/ */
struct sink *sink_new_from_logsrv(struct logsrv *logsrv) static struct sink *sink_new_from_logsrv(struct logsrv *logsrv)
{ {
struct sink *sink = NULL; struct sink *sink = NULL;
struct server *srv = NULL; struct server *srv = NULL;
@ -1262,8 +1262,6 @@ int cfg_post_parse_ring()
} }
/* function: resolve a single logsrv target of BUFFER type /* function: resolve a single logsrv target of BUFFER type
*
* <logsrv> is parent logsrv used for implicit settings
* *
* Returns err_code which defaults to ERR_NONE and can be set to a combination * Returns err_code which defaults to ERR_NONE and can be set to a combination
* of ERR_WARN, ERR_ALERT, ERR_FATAL and ERR_ABORT in case of errors. * of ERR_WARN, ERR_ALERT, ERR_FATAL and ERR_ABORT in case of errors.