diff options
author | Vincent Untz <vuntz@gnome.org> | 2010-02-17 04:46:44 +0100 |
---|---|---|
committer | Vincent Untz <vuntz@gnome.org> | 2010-03-10 03:29:52 +0100 |
commit | be3aec1ebb3a335bc757bb4588609ca2c2722e7c (patch) | |
tree | d0af63f7a8770f89e3ef8629bb64605db871f346 /src/validate.c | |
parent | 847c557baf630adaa03ebb8fbb179bc3dbbeb492 (diff) | |
download | desktop-file-utils-be3aec1ebb3a335bc757bb4588609ca2c2722e7c.tar.gz |
Make the invalid mime type error non-fatal for now
Diffstat (limited to 'src/validate.c')
-rw-r--r-- | src/validate.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/validate.c b/src/validate.c index cb04061..665ac6c 100644 --- a/src/validate.c +++ b/src/validate.c @@ -1304,11 +1304,11 @@ handle_mime_key (kf_validator *kf, g_free (valid_error); break; case MU_INVALID: - print_fatal (kf, "value \"%s\" for key \"%s\" in group \"%s\" " - "contains value \"%s\" which is an invalid MIME " - "type: %s\n", - value, locale_key, kf->current_group, - types[i], valid_error); + print_future_fatal (kf, "value \"%s\" for key \"%s\" in group \"%s\" " + "contains value \"%s\" which is an invalid MIME " + "type: %s\n", + value, locale_key, kf->current_group, + types[i], valid_error); retval = FALSE; g_free (valid_error); |