aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-12-12 01:32:31 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-12-12 01:32:31 +0000
commit5883ff951b206da1b45ebb9d7a6d95b9f7b570cd (patch)
treeec5c91f2ebaf67716ca04337e5259e63fa69fc67
parent98373635b3962423dc6ac3f765afa4f0605e6ffb (diff)
Avoid to crash if we are given an unexistent field.
svn path=/trunk/; revision=16762
-rw-r--r--plugins/mate/mate_setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/mate_setup.c b/plugins/mate/mate_setup.c
index 07b7af8597..7e98d49933 100644
--- a/plugins/mate/mate_setup.c
+++ b/plugins/mate/mate_setup.c
@@ -183,7 +183,7 @@ extern gboolean add_hfid(header_field_info* hfi, gchar* how, GHashTable* where)
}
if (! exists) {
- report_error("MATE Error: cannot find field %s",hfi->abbrev);
+ report_error("MATE Error: cannot find field for attribute %s",how);
}
return exists;
}