]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Changed _SQUID_MSWIN_ to _SQUID_WINDOWS_ everywhere.\nFixed assignment to wrong type...
authorFrancesco Chemolli <kinkie@squid-cache.org>
Sat, 28 Jan 2012 18:14:16 +0000 (19:14 +0100)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Sat, 28 Jan 2012 18:14:16 +0000 (19:14 +0100)
src/fde.h

index f7ffa1c0c4de714f66d6e7df0a6e5d6ea8d3cbeb..389f6b0a6dcd64b34f784e4a0cd5e071b1f741ed 100644 (file)
--- 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;