Modified Files: os_win32.c
robs [Fri, 21 Dec 2001 02:58:33 +0000 (02:58 +0000)]
remove DOS CRs (again..)

libfcgi/os_win32.c

index d15955c..609eca8 100755 (executable)
@@ -17,7 +17,7 @@
  *  significantly more enjoyable.)
  */
 #ifndef lint
-static const char rcsid[] = "$Id: os_win32.c,v 1.25 2001/11/30 17:48:57 robs Exp $";
+static const char rcsid[] = "$Id: os_win32.c,v 1.26 2001/12/21 02:58:33 robs Exp $";
 #endif /* not lint */
 
 #define WIN32_LEAN_AND_MEAN 
@@ -52,7 +52,7 @@ static HANDLE hStdinThread = INVALID_HANDLE_VALUE;
 static HANDLE stdioHandles[3] = {INVALID_HANDLE_VALUE, INVALID_HANDLE_VALUE,
                                 INVALID_HANDLE_VALUE};
 
-// This is a nail for listening to more than one port..\r
+// This is a nail for listening to more than one port..
 static HANDLE acceptMutex = INVALID_HANDLE_VALUE;
 
 static BOOLEAN shutdownPending = FALSE;
@@ -364,14 +364,14 @@ int OS_LibInit(int stdioFds[3])
         }
     }
 
-    if (acceptMutex == INVALID_HANDLE_VALUE)\r
-    {\r
+    if (acceptMutex == INVALID_HANDLE_VALUE)
+    {
         /* If an accept mutex is in the env, use it */
         val = getenv(MUTEX_VARNAME);
         if (val != NULL) 
         {
             acceptMutex = (HANDLE) atoi(val);
-        }\r
+        }
     }
 
     /*
@@ -690,9 +690,9 @@ int OS_CreateLocalIpcFd(const char *bindPath, int backlog)
     int pseudoFd = -1;
     short port = getPort(bindPath);
 
-    if (acceptMutex == INVALID_HANDLE_VALUE)\r
-    {\r
-        acceptMutex = CreateMutex(NULL, FALSE, NULL);\r
+    if (acceptMutex == INVALID_HANDLE_VALUE)
+    {
+        acceptMutex = CreateMutex(NULL, FALSE, NULL);
         if (acceptMutex == NULL) return -2;
         if (! SetHandleInformation(acceptMutex, HANDLE_FLAG_INHERIT, TRUE)) return -3;
     }