Date: Sat, 31 Jan 2026 18:27:53 +0000 From: Zhenlei Huang <zlei@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: db75edf2b61e - stable/14 - netipsec: Use proper prototype for SYSINIT functions Message-ID: <697e49a9.2283d.19dc101b@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/14 has been updated by zlei: URL: https://cgit.FreeBSD.org/src/commit/?id=db75edf2b61e76425b69a997b8d0445a92cb76f1 commit db75edf2b61e76425b69a997b8d0445a92cb76f1 Author: Zhenlei Huang <zlei@FreeBSD.org> AuthorDate: 2025-10-13 10:12:33 +0000 Commit: Zhenlei Huang <zlei@FreeBSD.org> CommitDate: 2026-01-31 18:25:04 +0000 netipsec: Use proper prototype for SYSINIT functions MFC after: 1 week (cherry picked from commit 360bb45690d918fac5bae78ab44f45d11327067a) (cherry picked from commit a32ee2897f8eed4a03976be65020912f03f7228e) --- sys/netipsec/xform_ipcomp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netipsec/xform_ipcomp.c b/sys/netipsec/xform_ipcomp.c index 9a8d132d564d..e8e098437ecc 100644 --- a/sys/netipsec/xform_ipcomp.c +++ b/sys/netipsec/xform_ipcomp.c @@ -750,7 +750,7 @@ static struct xformsw ipcomp_xformsw = { }; static void -ipcomp_attach(void) +ipcomp_attach(void *dummy __unused) { #ifdef INET @@ -763,7 +763,7 @@ ipcomp_attach(void) } static void -ipcomp_detach(void) +ipcomp_detach(void *dummy __unused) { #ifdef INEThome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?697e49a9.2283d.19dc101b>
