# HG changeset patch # User Matthew Wild # Date 1779719028 -3600 # Node ID 573ac422ca1d3f6e290aeaecea7bec92b520cf94 # Parent 25beb66fab3836138ecdf22dc1c6440416158c72 util.pposix: Fix incorrect syslog facility mapping The array of Lua constants accidentally omitted "news", leading to later constants ("syslog", "user" and "uucp") being assigned to the wrong POSIX constants. diff -r 25beb66fab38 -r 573ac422ca1d util-src/pposix.c --- a/util-src/pposix.c Mon May 25 15:11:47 2026 +0100 +++ b/util-src/pposix.c Mon May 25 15:23:48 2026 +0100 @@ -169,6 +169,7 @@ "local7", "lpr", "mail", + "news", "syslog", "user", "uucp",