17 lines
642 B
Plaintext
17 lines
642 B
Plaintext
$OpenBSD: patch-src_mimeutils_c,v 1.1 2010/04/27 11:51:03 ajacoutot Exp $
|
|
|
|
From ubuntu: don't display warnings about x-directory types since those
|
|
are still being used in nautilus 2.30.x.
|
|
|
|
--- src/mimeutils.c.orig Wed Mar 10 03:33:41 2010
|
|
+++ src/mimeutils.c Tue Apr 27 13:45:06 2010
|
|
@@ -142,7 +142,7 @@ is_valid_media_type (const char *media_type,
|
|
if (error)
|
|
*error = g_strdup_printf ("\"%s\" is an old media type that should be "
|
|
"replaced with a modern equivalent", media_type);
|
|
- return MU_DISCOURAGED;
|
|
+ return MU_VALID;
|
|
}
|
|
|
|
if (g_ascii_strncasecmp (media_type, "X-", 2) == 0) {
|