From da3a48b9680e3c82436fbe90f90c99c9bab20d4a Mon Sep 17 00:00:00 2001 From: "jnd@chromium.org" Date: Wed, 25 Jan 2012 12:22:57 +0000 Subject: Remove wrong parameter from ECSignatureCreator's constructor in openssl implement. The wrong parameter was unused and broke the linux redux build. TBR=wtc BUG=None. TEST=Linux redux bot should be green. Review URL: https://chromiumcodereview.appspot.com/9234024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119053 0039d316-1c4b-4281-b951-d872f2087c98 --- crypto/ec_signature_creator_openssl.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'crypto/ec_signature_creator_openssl.cc') diff --git a/crypto/ec_signature_creator_openssl.cc b/crypto/ec_signature_creator_openssl.cc index 9e75ca2..9fa8ddc 100644 --- a/crypto/ec_signature_creator_openssl.cc +++ b/crypto/ec_signature_creator_openssl.cc @@ -14,10 +14,8 @@ ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) { return NULL; } -ECSignatureCreator::ECSignatureCreator(ECPrivateKey* key, - HASH_HashType hash_type) - : key_(key), - hash_type_(hash_type) { +ECSignatureCreator::ECSignatureCreator(ECPrivateKey* key) + : key_(key) { NOTIMPLEMENTED(); } -- cgit v1.1