From af9f2ee339acd3958c0a8262e7e1012a632025da Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 23 Feb 2021 13:30:13 +0100 Subject: [PATCH] Fix typo in comment in DH_set0_pqg function Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14288) --- 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 46aba02bad7..e3db7a49292 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) -- 2.47.3