diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-07 04:46:46 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-07 04:46:46 +0000 |
commit | e067709466d0eca5513d5d7a05b8dbf7699fcf96 (patch) | |
tree | 29deb182fd5cf6533a1c417dbac5f42e55aaae71 /sbin/isakmpd/policy.c | |
parent | ba03a212376f5be0a3f0952b1aade4421a7e59ab (diff) |
No need to allocate/free X509 policy information -- the certs are
converted as needed, and the CA certs are irrelevant.
Diffstat (limited to 'sbin/isakmpd/policy.c')
-rw-r--r-- | sbin/isakmpd/policy.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sbin/isakmpd/policy.c b/sbin/isakmpd/policy.c index 525121dd041..4645c338011 100644 --- a/sbin/isakmpd/policy.c +++ b/sbin/isakmpd/policy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: policy.c,v 1.31 2001/06/07 04:23:35 angelos Exp $ */ +/* $OpenBSD: policy.c,v 1.32 2001/06/07 04:46:45 angelos Exp $ */ /* $EOM: policy.c,v 1.49 2000/10/24 13:33:39 niklas Exp $ */ /* @@ -124,9 +124,6 @@ static struct dynload_script libkeynote_script[] = { char **keynote_policy_asserts = NULL; int keynote_policy_asserts_num = 0; -char **x509_policy_asserts = NULL; -int x509_policy_asserts_num = 0; -int x509_policy_asserts_num_alloc = 0; struct exchange *policy_exchange = 0; struct sa *policy_sa = 0; struct sa *policy_isakmp_sa = 0; |