diff options
author | Martin Willi <martin@strongswan.org> | 2009-08-13 15:05:14 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-08-26 11:23:49 +0200 |
commit | cbb62e8f4c48c795a3cf63899048845ee3bfe75c (patch) | |
tree | de9adde5bcfa691b214a5423b49141c6a60991bd /src/libstrongswan/credentials/certificates/certificate.c | |
parent | f11a78f10a71756a48e318f00a0772f42226b1ef (diff) | |
download | strongswan-cbb62e8f4c48c795a3cf63899048845ee3bfe75c.tar.bz2 strongswan-cbb62e8f4c48c795a3cf63899048845ee3bfe75c.tar.xz |
handle pluto specific certificates under CRED_CERTIFICATE, not as own credential kind
Diffstat (limited to 'src/libstrongswan/credentials/certificates/certificate.c')
-rw-r--r-- | src/libstrongswan/credentials/certificates/certificate.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstrongswan/credentials/certificates/certificate.c b/src/libstrongswan/credentials/certificates/certificate.c index 041e2f1db..24e2d265b 100644 --- a/src/libstrongswan/credentials/certificates/certificate.c +++ b/src/libstrongswan/credentials/certificates/certificate.c @@ -17,7 +17,7 @@ #include <credentials/certificates/x509.h> -ENUM(certificate_type_names, CERT_ANY, CERT_PGP, +ENUM(certificate_type_names, CERT_ANY, CERT_PLUTO_CRL, "ANY", "X509", "X509_CRL", @@ -27,6 +27,9 @@ ENUM(certificate_type_names, CERT_ANY, CERT_PGP, "X509_CHAIN", "TRUSTED_PUBKEY", "PGP", + "PLUTO_CERT", + "PLUTO_AC", + "PLUTO_CRL", ); ENUM(cert_validation_names, VALIDATION_GOOD, VALIDATION_REVOKED, |