From 7ca3ea22c1773633644b6255731bf80e76133358 Mon Sep 17 00:00:00 2001 From: TJ Saunders Date: Thu, 9 Jun 2016 14:52:04 -0700 Subject: Reorder the setter arguments to more consistently match that of other APIs, per review comments. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Richard Levitte Reviewed-by: Emilia Käsper Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1193) --- doc/crypto/DSA_SIG_new.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/crypto/DSA_SIG_new.pod') diff --git a/doc/crypto/DSA_SIG_new.pod b/doc/crypto/DSA_SIG_new.pod index 68694f078a..345c02c56d 100644 --- a/doc/crypto/DSA_SIG_new.pod +++ b/doc/crypto/DSA_SIG_new.pod @@ -11,7 +11,7 @@ DSA_SIG_new, DSA_SIG_free - allocate and free DSA signature objects DSA_SIG *DSA_SIG_new(void); void DSA_SIG_free(DSA_SIG *a); void DSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, const DSA_SIG *sig); - int DSA_SIG_set0(BIGNUM *r, BIGNUM *s, DSA_SIG *sig); + int DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s); =head1 DESCRIPTION -- cgit v1.2.3