forgot to assign public.is_ocsp_signer() method

This commit is contained in:
Andreas Steffen
2007-03-07 23:31:03 +00:00
parent 4eacb268a0
commit 08d42d3994
+1
View File
@@ -1257,6 +1257,7 @@ x509_t *x509_create_from_chunk(chunk_t chunk, u_int level)
this->public.is_valid = (err_t (*) (const x509_t*,time_t*))is_valid;
this->public.is_ca = (bool (*) (const x509_t*))is_ca;
this->public.is_self_signed = (bool (*) (const x509_t*))is_self_signed;
this->public.is_ocsp_signer = (bool (*) (const x509_t*))is_ocsp_signer;
this->public.get_certificate = (chunk_t (*) (const x509_t*))get_certificate;
this->public.get_public_key = (rsa_public_key_t* (*) (const x509_t*))get_public_key;
this->public.get_serialNumber = (chunk_t (*) (const x509_t*))get_serialNumber;