/*
- * $Id: fqdncache.cc,v 1.38 1996/11/22 07:43:13 wessels Exp $
+ * $Id: fqdncache.cc,v 1.39 1996/11/22 08:38:50 wessels Exp $
*
* DEBUG: section 35 FQDN Cache
* AUTHOR: Harvest Derived
return &f;
}
-static void fqdncache_dnsHandleRead(int fd, void *data)
+static void
+fqdncache_dnsHandleRead(int fd, void *data)
{
dnsserver_t *dnsData = data;
int len;
/*
- * $Id: ipcache.cc,v 1.87 1996/11/22 04:37:59 wessels Exp $
+ * $Id: ipcache.cc,v 1.88 1996/11/22 08:38:51 wessels Exp $
*
* DEBUG: section 14 IP Cache
* AUTHOR: Harvest Derived
fatal_dump("Invalid $ttl");
i.expires = squid_curtime + atoi(token);
} else {
- debug(14,0,"--> %s <--\n", inbuf);
+ debug(14, 0, "--> %s <--\n", inbuf);
debug_trap("Invalid dnsserver output");
}
}
/*
- * $Id: mime.cc,v 1.22 1996/11/18 18:21:33 wessels Exp $
+ * $Id: mime.cc,v 1.23 1996/11/22 08:38:51 wessels Exp $
*
* DEBUG: section 25 MIME Parsing
* AUTHOR: Harvest Derived
continue;
if (!isspace(p[namelen]) && p[namelen] != ':')
continue;
- xstrncpy(header, p, strcspn(p, "\n\r")+1);
+ xstrncpy(header, p, strcspn(p, "\n\r") + 1);
debug(25, 5, "mime_get_header: checking '%s'\n", header);
q = header;
q += namelen;
/*
- * $Id: tools.cc,v 1.85 1996/11/22 05:07:17 wessels Exp $
+ * $Id: tools.cc,v 1.86 1996/11/22 08:38:52 wessels Exp $
*
* DEBUG: section 21 Misc Functions
* AUTHOR: Harvest Derived
#ifdef PRINT_STACK_TRACE
#ifdef _SQUID_HPUX_
{
- extern void U_STACK_TRACE(void); /* link with -lcl */
+ extern void U_STACK_TRACE(void); /* link with -lcl */
fflush(debug_log);
dup2(fileno(debug_log), 2);
U_STACK_TRACE();
}
#endif /* _SQUID_HPUX_ */
#ifdef _SQUID_SOLARIS_
- { /* get ftp://opcom.sun.ca/pub/tars/opcom_stack.tar.gz and */
- extern void opcom_stack_trace(void); /* link with -lopcom_stack */
+ { /* get ftp://opcom.sun.ca/pub/tars/opcom_stack.tar.gz and */
+ extern void opcom_stack_trace(void); /* link with -lopcom_stack */
fflush(debug_log);
dup2(fileno(debug_log), fileno(stdout));
opcom_stack_trace();