From: Gisle Vanem Date: Tue, 4 Jul 2017 13:42:33 +0000 (+0200) Subject: smb: fix build for djgpp/MSDOS X-Git-Tag: curl-7_55_0~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f8dba473a8ac0644058c7c12ae9500f45e564d45;p=thirdparty%2Fcurl.git smb: fix build for djgpp/MSDOS bug: https://curl.haxx.se/mail/lib-2017-07/0005.html --- diff --git a/lib/smb.c b/lib/smb.c index c2df43b707..45545628a8 100644 --- a/lib/smb.c +++ b/lib/smb.c @@ -34,7 +34,7 @@ #include #ifdef CURL_WINDOWS_APP #define getpid GetCurrentProcessId -#else +#elif !defined(MSDOS) #define getpid _getpid #endif #endif