diff options
author | lloyd <[email protected]> | 2006-08-23 02:07:53 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-23 02:07:53 +0000 |
commit | 8e10415bb2c8790d95d9e355ac58a5d4754b5939 (patch) | |
tree | f8166ad6fa9097d7428ccce5cbba50d4a0a029b4 /include/x509_crl.h | |
parent | 43dc40692b247d5f00724a9ffe767219589ec664 (diff) |
X509_CRL::force_decode should not be public
Diffstat (limited to 'include/x509_crl.h')
-rw-r--r-- | include/x509_crl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/x509_crl.h b/include/x509_crl.h index 330be47aa..67f21618b 100644 --- a/include/x509_crl.h +++ b/include/x509_crl.h @@ -33,11 +33,10 @@ class X509_CRL : public X509_Object X509_Time this_update() const; X509_Time next_update() const; - void force_decode(); - X509_CRL(DataSource&); X509_CRL(const std::string&); private: + void force_decode(); std::vector<CRL_Entry> revoked; Data_Store info; }; |