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


- Log -----------------------------------------------------------------
commit 9583e4166d02e160873daaaceb2f8dfe62e49659
Author: Richard Levitte <levi...@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 <t...@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);
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to