summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2011-10-15 13:10:54 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2011-10-15 13:10:54 +0000
commit085940711d9ef419271274cad740ea8ea61f6fe1 (patch)
tree1dcb8cc2dcc06f53cb747ab7cb7e95472ba2fefe /gtk
parentf39e15006526beaf6924c16934916c5ed22b0a7b (diff)
downloadnetsurf-085940711d9ef419271274cad740ea8ea61f6fe1.tar.gz
netsurf-085940711d9ef419271274cad740ea8ea61f6fe1.tar.bz2
Add missing title
svn path=/trunk/netsurf/; revision=13058
Diffstat (limited to 'gtk')
-rw-r--r--gtk/filetype.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/filetype.c b/gtk/filetype.c
index 7229d2037..f5cf3bfe7 100644
--- a/gtk/filetype.c
+++ b/gtk/filetype.c
@@ -170,6 +170,8 @@ const char *fetch_filetype(const char *unix_path)
return "text/html";
} else if ((3 < l) && (strcasecmp(unix_path + l - 4, ",b60") == 0)) {
return "image/png";
+ } else if ((3 < l) && (strcasecmp(unix_path + l - 4, ",ff9") == 0)) {
+ return "image/x-riscos-sprite";
}
if (strchr(unix_path, '.') == NULL) {