summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mxf.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mxf.cc b/src/mxf.cc
index 6709af4c..2de3fb4a 100644
--- a/src/mxf.cc
+++ b/src/mxf.cc
@@ -114,9 +114,11 @@ MXF::equals (shared_ptr<const Asset> other, EqualityOptions opt, boost::function
}
if (_file != other_mxf->file ()) {
- note (DCP_ERROR, "MXF: names differ");
if (!opt.mxf_names_can_differ) {
+ note (DCP_ERROR, "MXF: names differ");
return false;
+ } else {
+ note (DCP_NOTE, "MXF: names differ");
}
}