From b55209558b1823c148cb8c6e77255365c89acd64 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 9 Apr 2026 21:45:15 +0100 Subject: [PATCH] Remove a spurious const This causes build problems with very new glibc. Closes: #1128749 Signed-off-by: Ian Jackson --- polypath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polypath.c b/polypath.c index adac598..4e827ef 100644 --- a/polypath.c +++ b/polypath.c @@ -219,7 +219,7 @@ static void polypath_process_monitor_line(struct polypath *st, char *orgl, char *space=strchr(l,' '); if (!space) BAD("no first space"); - const char *ifname=space+1; + char *ifname=space+1; space=strchr(ifname,' '); if (!space) BAD("no second space"); -- 2.30.2