git: 9front

Download patch

ref: 8111a60158b2c692ed0482e44d51db9b37d4828b
parent: ee4e7bf4c085973f1248cdef730a5df7c54d5b20
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Sat May 4 03:03:37 EDT 2013

nedmail: recognize image/jpg mimetype

--- a/sys/src/cmd/upas/ned/nedmail.c
+++ b/sys/src/cmd/upas/ned/nedmail.c
@@ -62,6 +62,7 @@
 	{ "text",			"txt",	1,	0	},
 	{ "message/rfc822",		"msg",	0,	0	},
 	{ "image/bmp",			"bmp",	0,	"image"	},
+	{ "image/jpg",			"jpg",	0,	"image"	},
 	{ "image/jpeg",			"jpg",	0,	"image"	},
 	{ "image/gif",			"gif",	0,	"image"	},
 	{ "image/png",			"png",	0,	"image"	},
--