1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Build kdebug_secreplay() function only when IPSEC_DEBUG is defined.

This should fix the build on sparc.

Reported by:	emaste
X-MFC with:	r319118
This commit is contained in:
Andrey V. Elsukov 2017-06-01 10:04:12 +00:00
parent 328c75d621
commit 8e5060a03e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=319412

View File

@ -77,10 +77,6 @@ static void kdebug_sadb_x_sa2(struct sadb_ext *);
static void kdebug_sadb_x_sa_replay(struct sadb_ext *);
static void kdebug_sadb_x_natt(struct sadb_ext *);
#ifdef _KERNEL
static void kdebug_secreplay(struct secreplay *);
#endif
#ifndef _KERNEL
#define panic(fmt, ...) { printf(fmt, ## __VA_ARGS__); exit(-1); }
#endif
@ -724,6 +720,7 @@ kdebug_secash(struct secashead *sah, const char *indent)
printf("}\n");
}
#ifdef IPSEC_DEBUG
static void
kdebug_secreplay(struct secreplay *rpl)
{
@ -745,6 +742,7 @@ kdebug_secreplay(struct secreplay *rpl)
}
printf(" }\n");
}
#endif /* IPSEC_DEBUG */
static void
kdebug_secnatt(struct secnatt *natt)