[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Richard Levitte levitte at openssl.org
Wed Sep 21 14:21:19 UTC 2016


The branch OpenSSL_1_0_2-stable has been updated
       via  9583e4166d02e160873daaaceb2f8dfe62e49659 (commit)
      from  ff553f837172ecb2b5c8eca257ec3c5619a4b299 (commit)


- Log -----------------------------------------------------------------
commit 9583e4166d02e160873daaaceb2f8dfe62e49659
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 44d8afa..9fdc3e0 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -3238,6 +3238,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