From 6f6bf3feccd18a52863289604714d1af5a5613a1 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Tue, 19 May 2026 16:45:59 +0200 Subject: [PATCH] CLEANUP: haterm: Remove "(too old kernel)" from warning message during init During initialization of the haterm master pipe, If its size is limited (lower than the configured one * 5/4), a warning is emitted. In this warning, it is specified this happened because the kernel is too old. But it is unrelated. So let's remove this part. --- src/haterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haterm.c b/src/haterm.c index d51d1bf46..f7d9ffae5 100644 --- a/src/haterm.c +++ b/src/haterm.c @@ -1268,7 +1268,7 @@ static void hstream_init_splicing(void) master_pipesize = 0; } else - ha_warning("Splicing in haterm is limited to %lu bytes (too old kernel)\n", (ulong)master_pipesize); + ha_warning("Splicing in haterm is limited to %lu bytes\n", (ulong)master_pipesize); } } else