The branch master has been updated via af9f2ee339acd3958c0a8262e7e1012a632025da (commit) from 81c15ed00bbe5cb4b864ad9b1fab12a26fa91201 (commit)
- Log ----------------------------------------------------------------- commit af9f2ee339acd3958c0a8262e7e1012a632025da Author: Daniel Bevenius <daniel.beven...@gmail.com> Date: Tue Feb 23 13:30:13 2021 +0100 Fix typo in comment in DH_set0_pqg function Reviewed-by: Matt Caswell <m...@openssl.org> Reviewed-by: Paul Dale <pa...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14288) ----------------------------------------------------------------------- Summary of changes: crypto/dh/dh_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index 46aba02bad..e3db7a4929 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -222,7 +222,7 @@ void DH_get0_pqg(const DH *dh, int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g) { /* - * If the fields p and g in d are NULL, the corresponding input + * If the fields p and g in dh are NULL, the corresponding input * parameters MUST be non-NULL. q may remain NULL. */ if ((dh->params.p == NULL && p == NULL)