From f6eabd6cc9dfe40eafab7f2d801421b6a4de2057 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 17 Mar 2011 12:29:42 +0000 Subject: Fix framebuffer resource: handling svn path=/trunk/netsurf/; revision=12095 --- framebuffer/filetype.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'framebuffer/filetype.c') diff --git a/framebuffer/filetype.c b/framebuffer/filetype.c index 4b303e5f1..84e286d0c 100644 --- a/framebuffer/filetype.c +++ b/framebuffer/filetype.c @@ -43,6 +43,8 @@ const char *fetch_filetype(const char *unix_path) return "image/gif"; if (2 < l && strcasecmp(unix_path + l - 3, "png") == 0) return "image/png"; + if (2 < l && strcasecmp(unix_path + l - 3, "b60") == 0) + return "image/png"; if (2 < l && strcasecmp(unix_path + l - 3, "jng") == 0) return "image/jng"; if (2 < l && strcasecmp(unix_path + l - 3, "svg") == 0) -- cgit v1.2.3