[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

kaduk at mit.edu kaduk at mit.edu
Mon Oct 9 15:02:28 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  8bd108a0042a75cca34de4f803f6aa62299d0463 (commit)
      from  125993dee9f7e7361dd7dcf75ddb34050a78d973 (commit)


- Log -----------------------------------------------------------------
commit 8bd108a0042a75cca34de4f803f6aa62299d0463
Author: Mouse <mouse008 at gmail.com>
Date:   Sun Oct 8 22:47:02 2017 -0400

    Fix parameter name, for common aesthetics and to silence IDE warnings.
    
    CLA: trivial
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Ben Kaduk <kaduk at mit.edu>
    (Merged from https://github.com/openssl/openssl/pull/4494)

-----------------------------------------------------------------------

Summary of changes:
 include/openssl/bn.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/openssl/bn.h b/include/openssl/bn.h
index 17bd521..54ae760 100644
--- a/include/openssl/bn.h
+++ b/include/openssl/bn.h
@@ -196,7 +196,7 @@ int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
  */
 void BN_set_negative(BIGNUM *b, int n);
 /** BN_is_negative returns 1 if the BIGNUM is negative
- * \param  a  pointer to the BIGNUM object
+ * \param  b  pointer to the BIGNUM object
  * \return 1 if a < 0 and 0 otherwise
  */
 int BN_is_negative(const BIGNUM *b);


More information about the openssl-commits mailing list