[openssl-commits] [openssl] master update

Kurt Roeckx kurt at openssl.org
Sat Jun 23 18:29:21 UTC 2018


The branch master has been updated
       via  eaf39a9fe6f55feb5251e235069e02f7f50d9a49 (commit)
      from  24fa4b8df03c3fc8f100c1fbc44a7157b138d44a (commit)


- Log -----------------------------------------------------------------
commit eaf39a9fe6f55feb5251e235069e02f7f50d9a49
Author: Kurt Roeckx <kurt at roeckx.be>
Date:   Sat Jun 23 10:24:00 2018 +0200

    Fix prototype of ASN1_INTEGER_get and ASN1_INTEGER_set
    
    The parameters where switched
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    GH: #6578

-----------------------------------------------------------------------

Summary of changes:
 doc/man3/ASN1_INTEGER_get_int64.pod | 4 ++--
 1 file 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);


More information about the openssl-commits mailing list