diff options
author | lloyd <[email protected]> | 2006-07-01 21:31:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-07-01 21:31:59 +0000 |
commit | 6601628f84f52535adec1f34fe46c5e7039770cc (patch) | |
tree | b7f9c4fc8575b4c6bd1a1786a4bd2d539c3c2555 /src/x509self.cpp | |
parent | 6d3a4de1efcb6b04a1ab87037d487f979d7ca445 (diff) |
Make choose_sig_format a static member of Config rather than
a standalone function.
Diffstat (limited to 'src/x509self.cpp')
-rw-r--r-- | src/x509self.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x509self.cpp b/src/x509self.cpp index da75aff18..fadcf0c39 100644 --- a/src/x509self.cpp +++ b/src/x509self.cpp @@ -63,7 +63,7 @@ PK_Signer* choose_sig_format(const PKCS8_PrivateKey& key, { std::string padding; Signature_Format format; - ConfigXXX::choose_sig_format(key.algo_name(), padding, format); + Config::choose_sig_format(key.algo_name(), padding, format); sig_algo.oid = OIDS::lookup(key.algo_name() + "/" + padding); sig_algo.parameters = key.DER_encode_params(); |