diff options
Diffstat (limited to 'src/libstrongswan/crypto/crl.h')
-rwxr-xr-x | src/libstrongswan/crypto/crl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libstrongswan/crypto/crl.h b/src/libstrongswan/crypto/crl.h index 216cafad0..48953ba78 100755 --- a/src/libstrongswan/crypto/crl.h +++ b/src/libstrongswan/crypto/crl.h @@ -75,11 +75,9 @@ struct crl_t { * @brief Checks the validity interval of the crl * * @param this calling object - * @param until until = min(until, nextUpdate) if strict == TRUE - * @param strict nextUpdate restricts the validity - * @return NULL if the crl is valid + * @return TRUE if the crl is valid */ - err_t (*is_valid) (const crl_t *this, time_t *until, bool strict); + bool (*is_valid) (const crl_t *this); /** * @brief Checks if this crl is newer (thisUpdate) than the other crl |