[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Tue Sep 20 18:32:48 UTC 2016
The branch master has been updated
via a19228b7f4fc6fcb49713455b3caedbc24fb0b01 (commit)
from 6e836806add140fa9e56d1226d7514fdfa2c803a (commit)
- Log -----------------------------------------------------------------
commit a19228b7f4fc6fcb49713455b3caedbc24fb0b01
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>
-----------------------------------------------------------------------
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