summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-03-22 00:38:08 +0000
committerJames Bursa <james@netsurf-browser.org>2004-03-22 00:38:08 +0000
commit6a02385c1c85f404bbf4e5dfd8443d8fc072e052 (patch)
tree51cdf5c5e28cbc225ddac86a0a6bf5c6ba4632b6 /debug
parent85e6f03a92944663f1588fdd040dcce283ea76d2 (diff)
downloadnetsurf-6a02385c1c85f404bbf4e5dfd8443d8fc072e052.tar.gz
netsurf-6a02385c1c85f404bbf4e5dfd8443d8fc072e052.tar.bz2
[project @ 2004-03-22 00:38:08 by bursa]
Add a fetch_mimetype() for the debug build. svn path=/import/netsurf/; revision=652
Diffstat (limited to 'debug')
-rw-r--r--debug/filetyped.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/debug/filetyped.c b/debug/filetyped.c
index 283c4d142..f3fa37c89 100644
--- a/debug/filetyped.c
+++ b/debug/filetyped.c
@@ -24,3 +24,8 @@ const char *fetch_filetype(const char *unix_path)
return "text/html";
}
+
+char *fetch_mimetype(const char *ro_path)
+{
+ return strdup("text/plain");
+}