git: 402a6574886a - main - libsysdecode: Fix shutdownhow table
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 01 Jul 2026 10:07:32 UTC
The branch main has been updated by des:
URL: https://cgit.FreeBSD.org/src/commit/?id=402a6574886a90b8025777b3b2c960c88677462d
commit 402a6574886a90b8025777b3b2c960c88677462d
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-01 10:06:52 +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
---
lib/libsysdecode/mktables | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libsysdecode/mktables b/lib/libsysdecode/mktables
index df794b74c168..e7dde6f8e2ff 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"