/*
- * $Id: cachemgr.cc,v 1.46 1996/11/23 07:09:45 wessels Exp $
+ * $Id: cachemgr.cc,v 1.47 1996/11/25 06:15:29 wessels Exp $
*
* DEBUG: Section 0 CGI Cache Manager
* AUTHOR: Harvest Derived
p_state = 1;
for (s = reserve; *s; s++)
switch (*s) {
- case '<': printf("<"); break;
- case '&': printf("&"); break;
- default: putchar(*s); break;
+ case '<':
+ printf("<");
+ break;
+ case '&':
+ printf("&");
+ break;
+ default:
+ putchar(*s);
+ break;
}
break;
case INFO:
/*
- * $Id: fqdncache.cc,v 1.41 1996/11/24 04:33:00 wessels Exp $
+ * $Id: fqdncache.cc,v 1.42 1996/11/25 06:15:30 wessels Exp $
*
* DEBUG: section 35 FQDN Cache
* AUTHOR: Harvest Derived
return &f;
}
-static void
+static void
fqdncache_dnsHandleRead(int fd, void *data)
{
dnsserver_t *dnsData = data;
/*
- * $Id: mime.cc,v 1.24 1996/11/23 07:06:56 wessels Exp $
+ * $Id: mime.cc,v 1.25 1996/11/25 06:15:31 wessels Exp $
*
* DEBUG: section 25 MIME Parsing
* AUTHOR: Harvest Derived
continue;
l = strcspn(p, "\n\r") + 1;
if (l > GET_HDR_SZ)
- l = GET_HDR_SZ;
+ l = GET_HDR_SZ;
xstrncpy(header, p, l);
debug(25, 5, "mime_get_header: checking '%s'\n", header);
q = header;