diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2017-11-07 11:02:08 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2017-11-07 11:02:08 +0000 |
commit | 002dbf534b796aa995481fde7747e1d35ad540b0 (patch) | |
tree | 621cb983ab38e88033f9153917b04d50813315fd | |
parent | 8a42d839854e443741d34d79ae041ef691f02d32 (diff) |
Remove unused debug macro.
-rw-r--r-- | sys/netinet/ip_spd.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netinet/ip_spd.c b/sys/netinet/ip_spd.c index f87b5de5111..91706ffd92a 100644 --- a/sys/netinet/ip_spd.c +++ b/sys/netinet/ip_spd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_spd.c,v 1.94 2017/10/27 08:27:14 mpi Exp $ */ +/* $OpenBSD: ip_spd.c,v 1.95 2017/11/07 11:02:07 mpi Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -48,12 +48,6 @@ struct ipsec_acquire *ipsp_pending_acquire(struct ipsec_policy *, void ipsp_delete_acquire_timo(void *); void ipsp_delete_acquire(struct ipsec_acquire *); -#ifdef ENCDEBUG -#define DPRINTF(x) if (encdebug) printf x -#else -#define DPRINTF(x) -#endif - struct pool ipsec_policy_pool; struct pool ipsec_acquire_pool; int ipsec_policy_pool_initialized = 0; |