diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-01-27 11:53:58 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-01-27 11:53:58 +0000 |
commit | 41801fce439cd6c2433e0917e60b9f7647827915 (patch) | |
tree | b32b848fad8130eb75637dd4bb2298253f45ba34 /sbin | |
parent | b1893623c76c214cc64b332868dc2d27485370a0 (diff) |
include dnssec.h only if USE_DNSSEC; niklas ok
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/ike_auth.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/isakmpd/ike_auth.c b/sbin/isakmpd/ike_auth.c index e253b560971..e98a530a482 100644 --- a/sbin/isakmpd/ike_auth.c +++ b/sbin/isakmpd/ike_auth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ike_auth.c,v 1.34 2001/01/26 21:49:37 ho Exp $ */ +/* $OpenBSD: ike_auth.c,v 1.35 2001/01/27 11:53:57 itojun Exp $ */ /* $EOM: ike_auth.c,v 1.59 2000/11/21 00:21:31 angelos Exp $ */ /* @@ -68,7 +68,9 @@ #include "prf.h" #include "transport.h" #include "util.h" +#ifdef USE_DNSSEC #include "dnssec.h" +#endif #ifdef notyet static u_int8_t *enc_gen_skeyid (struct exchange *, size_t *); |