diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2002-08-07 13:19:21 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2002-08-07 13:19:21 +0000 |
commit | 4822d71a9a568df240dbe98019f4415df1544b07 (patch) | |
tree | 0885c9454df0b56011f77c0a904c1eadbafea3ba /sbin/isakmpd/init.c | |
parent | f4c21741ef280f28d5c806d106644d253ed9fe81 (diff) |
A rewrite of the CRL support code, also from <Thomas.Walpuski@gmx.net>.
Some style mods, and checks added for OpenSSL version 0.9.7 or later.
Currently CRLs are not supported for earlier versions.
Manual pages updated.
Diffstat (limited to 'sbin/isakmpd/init.c')
-rw-r--r-- | sbin/isakmpd/init.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/isakmpd/init.c b/sbin/isakmpd/init.c index 9516740f697..593b1214b14 100644 --- a/sbin/isakmpd/init.c +++ b/sbin/isakmpd/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.19 2002/06/10 18:08:58 ho Exp $ */ +/* $OpenBSD: init.c,v 1.20 2002/08/07 13:19:20 ho Exp $ */ /* $EOM: init.c,v 1.25 2000/03/30 14:27:24 ho Exp $ */ /* @@ -89,6 +89,7 @@ init (void) /* Depends on conf_init and policy_init having run */ cert_init (); + crl_init (); sa_init (); transport_init (); @@ -127,6 +128,7 @@ reinit (void) /* Reinitialize certificates */ cert_init (); + crl_init (); /* Reinitialize our connection list. */ connection_reinit (); |