Changes to comments that have been waiting since Aug 4 07:54.

This commit is contained in:
Emil Mikulic 2003-11-15 04:41:17 +00:00
parent 6bb5b5af42
commit b1b9432123
1 changed files with 3 additions and 5 deletions

View File

@ -188,9 +188,6 @@ static FILE *logfile = NULL;
static int want_chroot = 0;
static const char *default_extension_map[] = {
/* Linear search used - order affects speed significantly.
* This could be done in a better way.
*/
"text/html html htm",
"image/png png",
"image/jpeg jpeg jpe jpg",
@ -701,7 +698,8 @@ static char *expand_tilde(const char *path)
/* ---------------------------------------------------------------------------
* Strips the ending slash from a string (if there is one)
* Strips the ending slash from a string (if there is one) and re-allocates
* the string.
*/
static void strip_endslash(char **str)
{
@ -1617,7 +1615,7 @@ static void exit_quickly(int sig)
int i;
printf("\ncaught %s, cleaning up...", strsignal(sig)); fflush(stdout);
/* close connections */
/* close and free connections */
conn = LIST_FIRST(&connlist);
while (conn != NULL)
{