From 7114e4b4af607ecc3d6c70d8b5238dd114f88da1 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Sun, 2 Jan 2005 11:46:29 +0000 Subject: [project @ 2005-01-02 11:46:29 by bursa] Fix debug and riscos_debug builds. svn path=/import/netsurf/; revision=1423 --- debug/filetyped.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debug/filetyped.c') diff --git a/debug/filetyped.c b/debug/filetyped.c index b0aacc71b..a1c3876a9 100644 --- a/debug/filetyped.c +++ b/debug/filetyped.c @@ -29,6 +29,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, "jng") == 0) + return "image/jng"; return "text/html"; } -- cgit v1.2.3