From b2f5933df778b5a4a37ffcad133bdce6f54f1a39 Mon Sep 17 00:00:00 2001 From: Attila Szakacs Date: Tue, 12 Nov 2024 12:48:05 +0100 Subject: [PATCH] logpipe: remove out-of-date comment Not relevant since: e8fefcfce46700572cfddf89c97a13e1a64fcaaf Signed-off-by: Attila Szakacs --- lib/logpipe.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/logpipe.c b/lib/logpipe.c index cb0f081f3..e9fae9746 100644 --- a/lib/logpipe.c +++ b/lib/logpipe.c @@ -128,11 +128,6 @@ log_pipe_init_instance(LogPipe *self, GlobalConfig *cfg) self->plugin_name = NULL; self->signal_slot_connector = signal_slot_connector_new(); - /* NOTE: queue == NULL means that this pipe simply forwards the - * message along the pipeline, e.g. like it has called - * log_msg_forward_msg. Since this is a common case, it is better - * inlined (than to use an indirect call) for performance. */ - self->queue = log_pipe_forward_msg; self->free_fn = log_pipe_free_method; self->arcs = _arcs;