diff options
author | 2010-06-14 12:06:33 +0000 | |
---|---|---|
committer | 2010-06-14 12:06:33 +0000 | |
commit | 4acfb187e0baaa0a705d47adf7024ac6a8d4db7a (patch) | |
tree | fab4e221c3f89a405bd6f42249098e69a8c77797 | |
parent | NAT detection with SPIr is always 0 (diff) | |
download | wireguard-openbsd-4acfb187e0baaa0a705d47adf7024ac6a8d4db7a.tar.xz wireguard-openbsd-4acfb187e0baaa0a705d47adf7024ac6a8d4db7a.zip |
remove policy lookup debug message
-rw-r--r-- | sbin/iked/policy.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sbin/iked/policy.c b/sbin/iked/policy.c index 6c5440e0521..1bec78a9b5e 100644 --- a/sbin/iked/policy.c +++ b/sbin/iked/policy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: policy.c,v 1.5 2010/06/14 11:33:55 reyk Exp $ */ +/* $OpenBSD: policy.c,v 1.6 2010/06/14 12:06:33 reyk Exp $ */ /* $vantronix: policy.c,v 1.29 2010/05/28 15:34:35 reyk Exp $ */ /* @@ -291,12 +291,6 @@ sa_lookup(struct iked *env, u_int64_t ispi, u_int64_t rspi, static __inline int sa_cmp(struct iked_sa *a, struct iked_sa *b) { - log_debug("%s: ispi %s rspi %s <-> ispi %s rspi %s", __func__, - print_spi(a->sa_hdr.sh_ispi, 8), - print_spi(a->sa_hdr.sh_rspi, 8), - print_spi(b->sa_hdr.sh_ispi, 8), - print_spi(b->sa_hdr.sh_rspi, 8)); - if (a->sa_hdr.sh_initiator != b->sa_hdr.sh_initiator) return (-2); |