[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Kurt Roeckx kurt at openssl.org
Sat Jun 23 18:30:09 UTC 2018


The branch OpenSSL_1_1_0-stable has been updated
       via  2ab5cb01d4d44f570b8e11384635149d38867eb2 (commit)
      from  7fe760161df54cfbb2bdbc90a09a20ef0e7a6b30 (commit)


- Log -----------------------------------------------------------------
commit 2ab5cb01d4d44f570b8e11384635149d38867eb2
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
    (cherry picked from commit eaf39a9fe6f55feb5251e235069e02f7f50d9a49)

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

Summary of changes:
 doc/crypto/ASN1_INTEGER_get_int64.pod | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/crypto/ASN1_INTEGER_get_int64.pod b/doc/crypto/ASN1_INTEGER_get_int64.pod
index f61268d..7ed1cca 100644
--- a/doc/crypto/ASN1_INTEGER_get_int64.pod
+++ b/doc/crypto/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