diff --git a/libexif/exif-data.c b/libexif/exif-data.c index 145a033..ef5ccb1 100644 --- a/libexif/exif-data.c +++ b/libexif/exif-data.c @@ -1233,6 +1233,10 @@ interpret_maker_note(ExifData *data, const unsigned char *d, unsigned int ds) exif_log (data->priv->log, EXIF_LOG_CODE_DEBUG, "ExifData", "Apple MakerNote variant type %d", mnoteid); data->priv->md = exif_mnote_data_apple_new (data->priv->mem); + } else if ((mnoteid = exif_mnote_data_huawei_identify (data, e)) != 0) { + exif_log (data->priv->log, EXIF_LOG_CODE_DEBUG, + "ExifData", "Huawei MakerNote variant type %d", mnoteid); + data->priv->md = exif_mnote_data_huawei_new (data->priv->mem); } */ diff --git a/test/inc-comparetool.sh b/test/inc-comparetool.sh index 2342fb1..a14ce77 100644 --- a/test/inc-comparetool.sh +++ b/test/inc-comparetool.sh @@ -1,5 +1,4 @@ -# -*- sh -*- -# +#!/bin/sh # cmp(1) creates the same exit code as diff in case of files being # different or the same, even though the diff(1) output is more # informative