]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
compiler
authorwessels <>
Mon, 1 Apr 1996 11:56:48 +0000 (11:56 +0000)
committerwessels <>
Mon, 1 Apr 1996 11:56:48 +0000 (11:56 +0000)
src/debug.cc
src/mime.cc

index a5e3c88c1386ab56efa4f712e2309c1c2c446f87..edca6d46479973cd1cb7bfd8e0d50348af3d7886 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: debug.cc,v 1.10 1996/04/01 03:42:30 wessels Exp $ */
+/* $Id: debug.cc,v 1.11 1996/04/01 04:56:48 wessels Exp $ */
 
 #include "squid.h"
 
@@ -15,7 +15,7 @@ static char the_time[81];
 static int debugLevels[MAX_DEBUG_SECTIONS];
 
 #if defined(__STRICT_ANSI__)
-void _db_print(int section, int level, char *format...)
+void _db_print(int section, int level, char *format,...)
 {
     va_list args;
 #else
index 2bbf47b01d8692eaaa0026c6cd11bc2f3ac3ba2b..d0c8724a8196a01b998ba7ee63eb38c5ea7e35a7 100644 (file)
@@ -1,5 +1,5 @@
 
-/* $Id: mime.cc,v 1.9 1996/04/01 04:51:33 wessels Exp $ */
+/* $Id: mime.cc,v 1.10 1996/04/01 04:56:50 wessels Exp $ */
 
 #include "squid.h"
 #include "mime_table.h"
@@ -47,7 +47,7 @@ int mime_refresh_request(mime)
     char *pr = NULL;
     if (mime == NULL)
        return 0;
-    if (mime_get_header("If-Modified-Since"))
+    if (mime_get_header(mime, "If-Modified-Since"))
        return 1;
     if ((pr = mime_get_header(mime, "pragma"))) {
        /* why strstr and not strcmp? -DPW */