From: Marcus M. <mar...@us...> - 2006-10-16 09:43:18
|
Update of /cvsroot/libexif/libexif/libexif/canon In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25800 Modified Files: mnote-canon-tag.c Log Message: do not translate the "name" entry, its meant to be always the same. Index: mnote-canon-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/canon/mnote-canon-tag.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- mnote-canon-tag.c 17 Sep 2006 10:18:29 -0000 1.9 +++ mnote-canon-tag.c 16 Oct 2006 09:43:14 -0000 1.10 @@ -122,7 +122,7 @@ mnote_canon_tag_get_name (MnoteCanonTag unsigned int i; for (i = 0; i < sizeof (table) / sizeof (table[0]); i++) - if (table[i].tag == t) return (_(table[i].name)); + if (table[i].tag == t) return (table[i].name); /* do not translate */ return NULL; } |