diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-26 19:12:39 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-01-26 19:12:39 +0000 |
commit | e864666e818c062680b1fe8f0b2087c1539da3f0 (patch) | |
tree | 075bfb4e3e6ca508c5bd2769e1ed47d8ef609ce2 /sbin | |
parent | 04a9d83e2e683a8740e1f0cbb789f7e5c288cf50 (diff) |
include keynote.h only if USE_KEYNOTE is defined; ok niklas@
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 ce0ff5e2319..a0ad3e19d0e 100644 --- a/sbin/isakmpd/ike_auth.c +++ b/sbin/isakmpd/ike_auth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ike_auth.c,v 1.32 2001/01/26 12:12:51 niklas Exp $ */ +/* $OpenBSD: ike_auth.c,v 1.33 2001/01/26 19:12:38 markus Exp $ */ /* $EOM: ike_auth.c,v 1.59 2000/11/21 00:21:31 angelos Exp $ */ /* @@ -45,7 +45,9 @@ #include <stdlib.h> #include <string.h> #include <regex.h> +#if defined(USE_KEYNOTE) #include <keynote.h> +#endif #include <policy.h> #include "sysdep.h" |