From 49a7bf521d2df35d63ea760561a4249a2171b14c Mon Sep 17 00:00:00 2001 Message-Id: <49a7bf521d2df35d63ea760561a4249a2171b14c.1716385678.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 27 May 2015 19:04:29 +0100 Subject: [PATCH] pub/dsa-misc.c, pub/dsa.h: Make arg name in comment match declaration. Organization: Straylight/Edgeware From: Mark Wooding --- pub/dsa-misc.c | 2 +- pub/dsa.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pub/dsa-misc.c b/pub/dsa-misc.c index 8b03271b..3902f68e 100644 --- a/pub/dsa-misc.c +++ b/pub/dsa-misc.c @@ -67,7 +67,7 @@ mp *dsa_h2n(mp *d, mp *r, const void *h, size_t hsz) * @mp *q@ = order of the DSA group * @mp *x@ = secret key * @const octet *m@ = message hash - * @const gchash *h@ = hash class + * @const gchash *ch@ = hash class * @grand *r@ = random bit source, or null * * Returns: A nonce. diff --git a/pub/dsa.h b/pub/dsa.h index 97046fde..c803c78f 100644 --- a/pub/dsa.h +++ b/pub/dsa.h @@ -196,7 +196,7 @@ extern mp *dsa_h2n(mp */*d*/, mp */*r*/, const void */*h*/, size_t /*hsz*/); * @mp *q@ = order of the DSA group * @mp *x@ = secret key * @const octet *m@ = message hash - * @const gchash *h@ = hash class + * @const gchash *ch@ = hash class * @grand *r@ = random bit source, or null * * Returns: A nonce. -- [mdw]