From: Ian Jackson Date: Thu, 9 Apr 2026 20:45:15 +0000 (+0100) Subject: Remove a spurious const X-Git-Tag: v0.6.9~6 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b55209558b1823c148cb8c6e77255365c89acd64;p=secnet.git Remove a spurious const This causes build problems with very new glibc. Closes: #1128749 Signed-off-by: Ian Jackson --- 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");