Remove a couple of warnings
roberts [Tue, 10 Aug 1999 22:27:12 +0000 (22:27 +0000)]
libfcgi/fcgiapp.c
libfcgi/os_unix.c

index 2ed96b0..0aed95b 100644 (file)
@@ -11,7 +11,7 @@
  *
  */
 #ifndef lint
-static const char rcsid[] = "$Id: fcgiapp.c,v 1.10 1999/08/10 14:19:29 roberts Exp $";
+static const char rcsid[] = "$Id: fcgiapp.c,v 1.11 1999/08/10 22:27:12 roberts Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -2007,6 +2007,7 @@ int FCGX_OpenSocket(const char *path, int backlog)
         /* XXX probably need to call OS_LibInit() again for Win */
         isFastCGI = 1;
     }
+    return rc;
 }
 
 int FCGX_InitRequest(FCGX_Request *request, int sock, int flags)
index c9f0bd0..e190e13 100755 (executable)
@@ -17,7 +17,7 @@
  */
 
 #ifndef lint
-static const char rcsid[] = "$Id: os_unix.c,v 1.12 1999/08/05 21:25:55 roberts Exp $";
+static const char rcsid[] = "$Id: os_unix.c,v 1.13 1999/08/10 22:27:13 roberts Exp $";
 #endif /* not lint */
 
 #include "fcgi_config.h"
@@ -1142,7 +1142,6 @@ int OS_IpcClose(int ipcFd)
  */
 int OS_IsFcgi(int sock)
 {
-    int isFastCGI = FALSE;
        union {
         struct sockaddr_in in;
         struct sockaddr_un un;