summaryrefslogtreecommitdiff
path: root/src/verify.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-25 02:10:44 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-25 02:10:44 +0200
commitc0418f2a763407424d986c82ed147fbeaa2d9416 (patch)
treed59c1e80a82b5d25d1f48bbfe4790126ba865077 /src/verify.cc
parent540b9948e4a2fd4e52a2b29ed2089a0dc61d4cc6 (diff)
parent152266f6e65451a03521eb04b6a406b6e309e17a (diff)
Merge remote-tracking branch 'origin/main' into v1.9.xv1.9.22
Diffstat (limited to 'src/verify.cc')
-rw-r--r--src/verify.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 9abda0ff..a0b8284f 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -2212,6 +2212,8 @@ dcp::note_to_string(VerificationNote note, function<string (string)> process_str
return compose("The namespace %1 in CPL %2 is invalid", note.note().get(), note.cpl_id().get());
case VerificationNote::Code::MISSING_CPL_CONTENT_VERSION:
return compose("The CPL %1 has no <ContentVersion> tag", note.cpl_id().get());
+ case VerificationNote::Code::INVALID_PKL_NAMESPACE:
+ return compose("The namespace %1 in PKL %2 is invalid", note.note().get(), note.file()->filename());
}
return "";