From: Francesco Chemolli Date: Sat, 28 Jan 2012 18:14:16 +0000 (+0100) Subject: Changed _SQUID_MSWIN_ to _SQUID_WINDOWS_ everywhere.\nFixed assignment to wrong type... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f81bd3b4d11d99b361aa9ff407281e3fd3a072e6;p=thirdparty%2Fsquid.git Changed _SQUID_MSWIN_ to _SQUID_WINDOWS_ everywhere.\nFixed assignment to wrong type for win32 file handle. --- diff --git a/src/fde.h b/src/fde.h index f7ffa1c0c4..389f6b0a6d 100644 --- a/src/fde.h +++ b/src/fde.h @@ -115,7 +115,7 @@ public: SSL *ssl; SSL_CTX *dynamicSslContext; ///< cached and then freed when fd is closed #endif -#if _SQUID_MSWIN_ +#if _SQUID_WINDOWS_ struct { long handle; } win32; @@ -169,8 +169,8 @@ private: ssl = NULL; dynamicSslContext = NULL; #endif -#if _SQUID_MSWIN_ - win32.handle = NULL; +#if _SQUID_WINDOWS_ + win32.handle = 0; #endif tosFromServer = '\0'; nfmarkFromServer = 0;