aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2018-06-23 10:24:00 +0200
committerKurt Roeckx <kurt@roeckx.be>2018-06-23 20:29:11 +0200
commiteaf39a9fe6f55feb5251e235069e02f7f50d9a49 (patch)
tree1173f18ade47149c4af2985b878844a2e8d46900 /doc
parent24fa4b8df03c3fc8f100c1fbc44a7157b138d44a (diff)
downloadopenssl-eaf39a9fe6f55feb5251e235069e02f7f50d9a49.zip
openssl-eaf39a9fe6f55feb5251e235069e02f7f50d9a49.tar.gz
openssl-eaf39a9fe6f55feb5251e235069e02f7f50d9a49.tar.bz2
Fix prototype of ASN1_INTEGER_get and ASN1_INTEGER_set
The parameters where switched Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #6578
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/ASN1_INTEGER_get_int64.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/ASN1_INTEGER_get_int64.pod b/doc/man3/ASN1_INTEGER_get_int64.pod
index f61268d..7ed1cca 100644
--- a/doc/man3/ASN1_INTEGER_get_int64.pod
+++ b/doc/man3/ASN1_INTEGER_get_int64.pod
@@ -11,10 +11,10 @@ ASN1_INTEGER_get_int64, ASN1_INTEGER_get, ASN1_INTEGER_set_int64, ASN1_INTEGER_s
#include <openssl/asn1.h>
int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
- int ASN1_INTEGER_get(const ASN1_INTEGER *a, long v);
+ long ASN1_INTEGER_get(const ASN1_INTEGER *a);
int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r);
- long ASN1_INTEGER_set(const ASN1_INTEGER *a);
+ int ASN1_INTEGER_set(const ASN1_INTEGER *a, long v);
int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a);
int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r);