From: J?rg H. <ho...@us...> - 2004-05-18 12:27:49
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14130 Modified Files: exif-data.c Log Message: fixed typo (typical vi failure) Index: exif-data.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-data.c,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- exif-data.c 16 May 2004 13:48:29 -0000 1.42 +++ exif-data.c 18 May 2004 12:27:38 -0000 1.43 @@ -677,7 +677,7 @@ /* Pentax & some variant of Nikon */ if ((e->size >= 2) && (e->data[0] == 0x00) && (e->data[1] == 0x1b)) { - if (em && !strnicmp (exif_entry_get_value (em, value, sizeof(value)), "Nikon", 5)) { + if (em && !strncmp (exif_entry_get_value (em, value, sizeof(value)), "Nikon", 5)) { data->priv->md = exif_mnote_data_olympus_new (); } else { data->priv->md = exif_mnote_data_pentax_new (); |