summaryrefslogtreecommitdiffstats
path: root/src/misc.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2011-01-11 17:45:26 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2011-01-11 17:55:12 +0100
commit7fbb926c0bf64e385bfec5c8db86d24b2c049a26 (patch)
tree365169483193895792dad6da269e6bc8ac39127b /src/misc.c
parentbb5f5281c007043231c4d95ce1309f1a6d999d33 (diff)
downloadlibssh-7fbb926c0bf64e385bfec5c8db86d24b2c049a26.tar.gz
libssh-7fbb926c0bf64e385bfec5c8db86d24b2c049a26.tar.xz
libssh-7fbb926c0bf64e385bfec5c8db86d24b2c049a26.zip
Fix getpwuid_r on opensolaris
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/misc.c b/src/misc.c
index 493ea2f..2daa5f2 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -22,8 +22,14 @@
* MA 02111-1307, USA.
*/
-#include "config.h"
+#ifndef _WIN32
+/* This is needed for a standard getpwuid_r on opensolaris */
+#define _POSIX_PTHREAD_SEMANTICS
+#include <pwd.h>
+#include <arpa/inet.h>
+#endif
+#include "config.h"
#include <limits.h>
#include <stdio.h>
#include <string.h>
@@ -47,12 +53,6 @@
# include <io.h>
#endif /* _MSC_VER */
-#else /* _WIN32 */
-
-/* This is needed for a standard getpwuid_r on opensolaris */
-#define _POSIX_PTHREAD_SEMANTICS
-#include <pwd.h>
-#include <arpa/inet.h>
#endif /* _WIN32 */
#include "libssh/priv.h"