git: 3d4f9656f01d - stable/15 - libsysdecode: Fix shutdownhow table
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 09 Jul 2026 06:51:43 UTC
The branch stable/15 has been updated by des:
URL: https://cgit.FreeBSD.org/src/commit/?id=3d4f9656f01db403ad6adfe59113de5d85e1df23
commit 3d4f9656f01db403ad6adfe59113de5d85e1df23
Author: Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2026-07-01 10:06:52 +0000
Commit: Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2026-07-09 06:51:39 +0000
libsysdecode: Fix shutdownhow table
MFC after: 1 week
Fixes: c3276e02beab ("sockets: make shutdown(2) how argument a enum")
Reviewed by: glebius
Differential Revision: https://reviews.freebsd.org/D57915
(cherry picked from commit 402a6574886a90b8025777b3b2c960c88677462d)
---
lib/libsysdecode/mktables | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libsysdecode/mktables b/lib/libsysdecode/mktables
index 6b4f79402660..ad5d82dcdb42 100644
--- a/lib/libsysdecode/mktables
+++ b/lib/libsysdecode/mktables
@@ -127,7 +127,7 @@ gen_table "rusage" "RUSAGE_[A-Z]+[[:space:]]+[-0-9]+" "sys/
gen_table "schedpolicy" "SCHED_[A-Z]+[[:space:]]+[0-9]+" "sys/sched.h"
gen_table "sendfileflags" "SF_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
gen_table "shmatflags" "SHM_[A-Z]+[[:space:]]+[0-9]{6}" "sys/shm.h"
-gen_table "shutdownhow" "SHUT_[A-Z]+[[:space:]]+[0-9]+" "sys/socket.h"
+gen_table "shutdownhow" "SHUT_[A-Z]+[[:space:]]+SHUT_[A-Z]+" "sys/socket.h"
gen_table "sigbuscode" "BUS_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"
gen_table "sigchldcode" "CLD_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"
gen_table "sigfpecode" "FPE_[A-Z]+[[:space:]]+[0-9]+" "sys/signal.h"