*/
#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"
resultSock = socket(AF_UNIX, SOCK_STREAM, 0);
}
- assert(resultSock >= 0);
+ ASSERT(resultSock >= 0);
connectStatus = connect(resultSock, (struct sockaddr *) &sa.unixVariant,
servLen);
if(connectStatus >= 0) {
strLen = strlen(clientList);
clientListCopy = (char *)malloc(strLen + 1);
- assert(newString != NULL);
+ ASSERT(newString != NULL);
memcpy(newString, clientList, strLen);
newString[strLen] = '\000';
* 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"
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) {