[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Fri Feb 5 15:37:27 UTC 2016


The branch master has been updated
       via  424d5db24803d2e4e1e406eb73262dea76761da4 (commit)
      from  8a41fa6f9e969c6b58c2bda42631cc238afaf27c (commit)


- Log -----------------------------------------------------------------
commit 424d5db24803d2e4e1e406eb73262dea76761da4
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Feb 5 14:08:05 2016 +0100

    VMS lacks socklen_t, give it one
    
    Fortunately, we only use socklen_t internally
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

Summary of changes:
 crypto/bio/bio_lcl.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/crypto/bio/bio_lcl.h b/crypto/bio/bio_lcl.h
index 19bfe53..eb9d463 100644
--- a/crypto/bio/bio_lcl.h
+++ b/crypto/bio/bio_lcl.h
@@ -68,6 +68,10 @@ union bio_addr_st {
 #include <openssl/bio.h>
 
 #ifndef OPENSSL_NO_SOCK
+# ifdef OPENSSL_SYS_VMS
+typedef unsigned int socklen_t;
+# endif
+
 int BIO_ADDR_make(BIO_ADDR *ap, const struct sockaddr *sa);
 const struct sockaddr *BIO_ADDR_sockaddr(const BIO_ADDR *ap);
 struct sockaddr *BIO_ADDR_sockaddr_noconst(BIO_ADDR *ap);


More information about the openssl-commits mailing list