diff options
author | jnd@chromium.org <jnd@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-25 12:22:57 +0000 |
---|---|---|
committer | jnd@chromium.org <jnd@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-25 12:22:57 +0000 |
commit | da3a48b9680e3c82436fbe90f90c99c9bab20d4a (patch) | |
tree | f6f6f82bcda6f1781749f22c4d96fc7ed99383e3 /crypto | |
parent | 6661ef43d4745b513eeecd57e501803aff4e74bb (diff) | |
download | chromium_src-da3a48b9680e3c82436fbe90f90c99c9bab20d4a.zip chromium_src-da3a48b9680e3c82436fbe90f90c99c9bab20d4a.tar.gz chromium_src-da3a48b9680e3c82436fbe90f90c99c9bab20d4a.tar.bz2 |
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
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ec_signature_creator_openssl.cc | 6 |
1 files changed, 2 insertions, 4 deletions
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(); } |