diff options
author | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2017-12-17 22:15:15 +0100 |
---|---|---|
committer | Bernd Edlinger <bernd.edlinger@hotmail.de> | 2017-12-18 16:16:20 +0100 |
commit | 532b11830c365fd50a6c27e4933935a8126d91ad (patch) | |
tree | 391db66bd9ed40e34b74ae92255573a283323f9f /crypto/ec | |
parent | a7956a2c6eeabf46c4248e9d29c5364c48795287 (diff) | |
download | openssl-new-532b11830c365fd50a6c27e4933935a8126d91ad.tar.gz |
Fix a typo in comment
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/4949)
Diffstat (limited to 'crypto/ec')
-rw-r--r-- | crypto/ec/ecdsa_ossl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ecdsa_ossl.c b/crypto/ec/ecdsa_ossl.c index 7118e43bfc..30458f1402 100644 --- a/crypto/ec/ecdsa_ossl.c +++ b/crypto/ec/ecdsa_ossl.c @@ -298,7 +298,7 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len, } if (BN_is_zero(s)) { /* - * if kinv and r have been supplied by the caller don't to + * if kinv and r have been supplied by the caller, don't * generate new kinv and r values */ if (in_kinv != NULL && in_r != NULL) { |