From: wessels <> Date: Mon, 1 Apr 1996 11:56:48 +0000 (+0000) Subject: compiler X-Git-Tag: SQUID_3_0_PRE1~6319 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abafbe267098fcef97c9987f16e311112b3e4e9c;p=thirdparty%2Fsquid.git compiler --- diff --git a/src/debug.cc b/src/debug.cc index a5e3c88c13..edca6d4647 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -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 diff --git a/src/mime.cc b/src/mime.cc index 2bbf47b01d..d0c8724a81 100644 --- a/src/mime.cc +++ b/src/mime.cc @@ -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 */