diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-05-25 08:17:29 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-05-25 08:17:29 +0000 |
commit | f2566a3bac180a79b1ba06c96ef32e72d0f802e6 (patch) | |
tree | d885879158f191932ce505b512c35b13e9a381fa | |
parent | fc921162964e62d57a69eaec76796ffd0d339329 (diff) | |
download | strongswan-f2566a3bac180a79b1ba06c96ef32e72d0f802e6.tar.bz2 strongswan-f2566a3bac180a79b1ba06c96ef32e72d0f802e6.tar.xz |
x509_t* argument in get_issuer() method is not constant any more because a short cut to the ca might be set
-rwxr-xr-x | src/libstrongswan/credential_store.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/credential_store.h b/src/libstrongswan/credential_store.h index b34a66dd6..b0a500621 100755 --- a/src/libstrongswan/credential_store.h +++ b/src/libstrongswan/credential_store.h @@ -142,7 +142,7 @@ struct credential_store_t { * @param cert certificate for which issuer ca info is required * @return ca info, or NULL if not found */ - ca_info_t* (*get_issuer) (credential_store_t *this, const x509_t* cert); + ca_info_t* (*get_issuer) (credential_store_t *this, x509_t* cert); /** * @brief Verify an RSA signature given the ID of the signer |