assert -> ASSERT
robs [Wed, 2 Aug 2000 12:36:43 +0000 (12:36 +0000)]
libfcgi/os_unix.c
libfcgi/os_win32.c

index 9de722b..a12430a 100755 (executable)
@@ -17,7 +17,7 @@
  */
 
 #ifndef lint
-static const char rcsid[] = "$Id: os_unix.c,v 1.16 2000/02/03 08:52:56 skimo Exp $";
+static const char rcsid[] = "$Id: os_unix.c,v 1.17 2000/08/02 12:36:43 robs Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -370,7 +370,7 @@ int OS_FcgiConnect(char *bindPath)
        resultSock = socket(AF_UNIX, SOCK_STREAM, 0);
     }
 
-    assert(resultSock >= 0);
+    ASSERT(resultSock >= 0);
     connectStatus = connect(resultSock, (struct sockaddr *) &sa.unixVariant,
                              servLen);
     if(connectStatus >= 0) {
@@ -852,7 +852,7 @@ static int ClientAddrOK(struct sockaddr_in *saPtr, const char *clientList)
 
     strLen = strlen(clientList);
     clientListCopy = (char *)malloc(strLen + 1);
-    assert(newString != NULL);
+    ASSERT(newString != NULL);
     memcpy(newString, clientList, strLen);
     newString[strLen] = '\000';
 
index 721cb69..535aa74 100755 (executable)
@@ -17,7 +17,7 @@
  *  significantly more enjoyable.)
  */
 #ifndef lint
-static const char rcsid[] = "$Id: os_win32.c,v 1.5 1999/08/27 14:03:35 roberts Exp $";
+static const char rcsid[] = "$Id: os_win32.c,v 1.6 2000/08/02 12:37:33 robs Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -744,7 +744,7 @@ int OS_FcgiConnect(char *bindPath)
        servLen = sizeof(sockAddr);
        resultSock = socket(AF_INET, SOCK_STREAM, 0);
 
-       assert(resultSock >= 0);
+       ASSERT(resultSock >= 0);
        connectStatus = connect(resultSock, (struct sockaddr *)
                                &sockAddr, servLen);
        if(connectStatus < 0) {