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

Richard Levitte levitte at openssl.org
Tue Sep 20 18:33:09 UTC 2016


The branch OpenSSL_1_1_0-stable has been updated
       via  e5cb5dbd3cc55514bb1e59a63dc8cb49221ec506 (commit)
      from  435972c17211df1bc6bb5276385f2223aafe3848 (commit)


- Log -----------------------------------------------------------------
commit e5cb5dbd3cc55514bb1e59a63dc8cb49221ec506
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Sep 20 18:43:24 2016 +0200

    apps/apps.c: include sys/socket.h to declare recv()
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (cherry picked from commit a19228b7f4fc6fcb49713455b3caedbc24fb0b01)

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

Summary of changes:
 apps/apps.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/apps/apps.c b/apps/apps.c
index 6ca0f2b..aa564b8 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -2340,6 +2340,8 @@ int raw_read_stdin(void *buf, int siz)
         return (-1);
 }
 #elif defined(__VMS)
+#include <sys/socket.h>
+
 int raw_read_stdin(void *buf, int siz)
 {
     return recv(fileno_stdin(), buf, siz, 0);


More information about the openssl-commits mailing list