From: Daniel Bevenius Date: Tue, 23 Feb 2021 12:30:13 +0000 (+0100) Subject: Fix typo in comment in DH_set0_pqg function X-Git-Tag: openssl-3.0.0-alpha13~200 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af9f2ee339acd3958c0a8262e7e1012a632025da;p=thirdparty%2Fopenssl.git 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) --- 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)