From 54a49823b5a6e54054037708ec0b73d197d9b0aa Mon Sep 17 00:00:00 2001 From: François Revel Date: Fri, 3 Oct 2008 04:30:47 +0000 Subject: Revert r5478, I didn't notice content struct had a mime_type field. svn path=/trunk/netsurf/; revision=5480 --- content/content.c | 17 ----------------- content/content.h | 1 - 2 files changed, 18 deletions(-) diff --git a/content/content.c b/content/content.c index 090eb399d..935f3657f 100644 --- a/content/content.c +++ b/content/content.c @@ -382,23 +382,6 @@ content_type content_lookup(const char *mime_type) } -/** - * Convert a content_type to a MIME type. - * - */ - -const char *content_mime(content_type type) -{ - struct mime_entry *m; - int i; - m = mime_map; - for (i = MIME_MAP_COUNT - 1; i >= 0; i--) - if (m[i].type == type) - return m[i].mime_type; - return "application/octet-stream"; -} - - /** * Create a new content structure. * diff --git a/content/content.h b/content/content.h index a75fd22b2..75be8cfb1 100644 --- a/content/content.h +++ b/content/content.h @@ -281,7 +281,6 @@ extern const char * const content_status_name[]; content_type content_lookup(const char *mime_type); -const char *content_mime(content_type type); struct content * content_create(const char *url); struct content * content_get(const char *url); struct content * content_get_ready(const char *url); -- cgit v1.2.3