-/* $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"
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
-/* $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"
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 */