From ae83f775116b012727bc977a03ee8803627859aa Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 17 Jul 2012 18:16:07 +0200 Subject: [PATCH] build: Fix missing struct in_addr warning. (cherry picked from commit 782b2e37c6a4e0254e2b596b9182043c5ebabd75) --- src/agent.c | 1 + src/auth.c | 1 + src/buffer.c | 1 + src/channels.c | 1 + src/client.c | 1 + src/crypt.c | 1 + src/dh.c | 1 + src/known_hosts.c | 1 + src/messages.c | 1 + src/packet.c | 1 + src/sftp.c | 1 + src/sftpserver.c | 1 + src/string.c | 1 + 13 files changed, 13 insertions(+) diff --git a/src/agent.c b/src/agent.c index a457d5e3..c3d13c81 100644 --- a/src/agent.c +++ b/src/agent.c @@ -44,6 +44,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/auth.c b/src/auth.c index 009340f9..8e73677e 100644 --- a/src/auth.c +++ b/src/auth.c @@ -27,6 +27,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/buffer.c b/src/buffer.c index 27d2592d..e68f16f1 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -25,6 +25,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/channels.c b/src/channels.c index bb1ceeda..6b7abb61 100644 --- a/src/channels.c +++ b/src/channels.c @@ -30,6 +30,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/client.c b/src/client.c index 829c70d5..b3c3d93e 100644 --- a/src/client.c +++ b/src/client.c @@ -26,6 +26,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/crypt.c b/src/crypt.c index 363517e6..957d6bf6 100644 --- a/src/crypt.c +++ b/src/crypt.c @@ -27,6 +27,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/dh.c b/src/dh.c index 30625db3..ec291d33 100644 --- a/src/dh.c +++ b/src/dh.c @@ -46,6 +46,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/known_hosts.c b/src/known_hosts.c index 60241b7a..5ff850e1 100644 --- a/src/known_hosts.c +++ b/src/known_hosts.c @@ -47,6 +47,7 @@ #endif /* HAVE_LIBCRYPTO */ #ifndef _WIN32 +# include # include #endif diff --git a/src/messages.c b/src/messages.c index 5299bb6c..f5087b2a 100644 --- a/src/messages.c +++ b/src/messages.c @@ -27,6 +27,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/packet.c b/src/packet.c index 543c50dc..f841a641 100644 --- a/src/packet.c +++ b/src/packet.c @@ -29,6 +29,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/sftp.c b/src/sftp.c index e3907340..32ece23d 100644 --- a/src/sftp.c +++ b/src/sftp.c @@ -35,6 +35,7 @@ #include #ifndef _WIN32 +#include #include #else #define S_IFSOCK 0140000 diff --git a/src/sftpserver.c b/src/sftpserver.c index 36e8dcae..d698f8c9 100644 --- a/src/sftpserver.c +++ b/src/sftpserver.c @@ -26,6 +26,7 @@ #include #ifndef _WIN32 +#include #include #endif diff --git a/src/string.c b/src/string.c index 6be7c2a6..ff633acd 100644 --- a/src/string.c +++ b/src/string.c @@ -26,6 +26,7 @@ #include #ifndef _WIN32 +#include #include #endif