mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
netipsec: Use proper prototype for SYSINIT functions
MFC after: 1 week
(cherry picked from commit 360bb45690d918fac5bae78ab44f45d11327067a)
(cherry picked from commit a32ee2897f)
This commit is contained in:
parent
9d3a11c90a
commit
89058b937f
1 changed files with 2 additions and 2 deletions
|
|
@ -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 INET
|
||||
|
|
|
|||
Loading…
Reference in a new issue