diff options
author | lloyd <[email protected]> | 2006-06-26 13:23:39 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-26 13:23:39 +0000 |
commit | ec036e15f63507286d54df7a02a6e5e28aeaff03 (patch) | |
tree | 989b28981a5e21ca844bdaf7ad166a7ea73693ce /src | |
parent | 7e84db5ba02b11c1d25da6a1925cab0fb7371ee7 (diff) |
Fix compile error
Diffstat (limited to 'src')
-rw-r--r-- | src/x509self.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/x509self.cpp b/src/x509self.cpp index 3a80eb263..b86502eed 100644 --- a/src/x509self.cpp +++ b/src/x509self.cpp @@ -177,7 +177,8 @@ PKCS10_Request create_cert_req(const X509_Cert_Options& opts, .end_cons(); DataSource_Memory source( - X509_Object::make_signed(signer, sig_algo, tbs_req.get_contents()) + X509_Object::make_signed(signer.get(), sig_algo, + tbs_req.get_contents()) ); return PKCS10_Request(source); |