]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
compiler
authorwessels <>
Sun, 26 Oct 1997 08:46:08 +0000 (08:46 +0000)
committerwessels <>
Sun, 26 Oct 1997 08:46:08 +0000 (08:46 +0000)
src/comm.cc
src/icmp.cc

index a2c3ec0faa809bc9a13c3caa732a981e157cf378..cc5cd097a5a11745040c137228bbd102da974cfe 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: comm.cc,v 1.194 1997/10/25 17:22:37 wessels Exp $
+ * $Id: comm.cc,v 1.195 1997/10/26 01:46:08 wessels Exp $
  *
  * DEBUG: section 5     Socket Functions
  * AUTHOR: Harvest Derived
@@ -1160,7 +1160,7 @@ commSetCloseOnExec(int fd)
 {
 #ifdef FD_CLOEXEC
     int flags;
-    int dummy;
+    int dummy = 0;
     if ((flags = fcntl(fd, F_GETFL, dummy)) < 0) {
        debug(50, 0) ("FD %d: fcntl F_GETFL: %s\n", fd, xstrerror());
        return;
index 872b326a14f3d052d0b9e5bd92db43febca8a0fb..4719c1d595cf364a974fb95dbe6d10412902a9e1 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: icmp.cc,v 1.44 1997/10/25 17:22:45 wessels Exp $
+ * $Id: icmp.cc,v 1.45 1997/10/26 01:46:09 wessels Exp $
  *
  * DEBUG: section 37    ICMP Routines
  * AUTHOR: Duane Wessels
@@ -106,9 +106,7 @@ icmpRecv(int unused1, void *unused2)
 }
 
 static void
-icmpQueueSend(pingerEchoData * pkt,
-    int len,
-    FREE *free_func;
+icmpQueueSend(pingerEchoData * pkt, int len, FREE *free_func)
 {
     icmpQueueData *q = NULL;
     icmpQueueData **H = NULL;