Fix typo.

Default type -> text/plain

svn path=/trunk/netsurf/; revision=3123
This commit is contained in:
John Mark Bell 2006-12-28 00:36:37 +00:00
parent 367c2aea88
commit abcce3dfe7
2 changed files with 2 additions and 2 deletions

View File

@ -1302,7 +1302,7 @@ bool fetch_process_headers(struct fetch *f)
}
if (type == 0) {
type = "text/html";
type = "text/plain";
if (url_path) {
type = fetch_filetype(url_path);
}

View File

@ -3497,7 +3497,7 @@ void urldb_destroy_host_tree(struct host_part *root)
/* Root path */
urldb_destroy_path_node_content(&root->paths);
/* An ourselves */
/* And ourselves */
free(root->part);
free(root);
}