From: Gisle Vanem Date: Fri, 3 Nov 2006 15:52:21 +0000 (+0000) Subject: Ifdef around S_IRGRP and S_IROTH (meaningless on Win32). X-Git-Tag: curl-7_16_1~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf57e9bb12c502c828a052e1901349a8c522a617;p=thirdparty%2Fcurl.git Ifdef around S_IRGRP and S_IROTH (meaningless on Win32). --- diff --git a/lib/ssh.c b/lib/ssh.c index 9f676b8e31..f56013ca71 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -130,6 +130,14 @@ #include "memdebug.h" #endif +#ifndef S_IRGRP +#define S_IRGRP 0 +#endif + +#ifndef S_IROTH +#define S_IROTH 0 +#endif + static LIBSSH2_ALLOC_FUNC(libssh2_malloc); static LIBSSH2_REALLOC_FUNC(libssh2_realloc); static LIBSSH2_FREE_FUNC(libssh2_free);