[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Sun Sep 24 09:47:20 UTC 2017
The branch master has been updated
via 28c0a61b3084ca05d1c590113332501e96b6175d (commit)
from b92d7b62f585357cb88462cc3c8e2685ca646f8f (commit)
- Log -----------------------------------------------------------------
commit 28c0a61b3084ca05d1c590113332501e96b6175d
Author: Saagar Jha <saagar at saagarjha.com>
Date: Fri Sep 22 14:57:01 2017 -0700
Update comments to match function parameter names
CLA: trivial
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4407)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/bn.h | 2 +-
include/openssl/ec.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/openssl/bn.h b/include/openssl/bn.h
index f77b4b9..93c8fe9 100644
--- a/include/openssl/bn.h
+++ b/include/openssl/bn.h
@@ -186,7 +186,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);
diff --git a/include/openssl/ec.h b/include/openssl/ec.h
index 7978d96..273aea0 100644
--- a/include/openssl/ec.h
+++ b/include/openssl/ec.h
@@ -774,7 +774,7 @@ EC_KEY *EC_KEY_dup(const EC_KEY *src);
int EC_KEY_up_ref(EC_KEY *key);
/** Returns the ENGINE object of a EC_KEY object
- * \param key EC_KEY object
+ * \param eckey EC_KEY object
* \return the ENGINE object (possibly NULL).
*/
ENGINE *EC_KEY_get0_engine(const EC_KEY *eckey);
More information about the openssl-commits
mailing list