Hello community, here is the log from the commit of package dbxtool for openSUSE:Factory checked in at 2020-09-22 21:11:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dbxtool (Old) and /work/SRC/openSUSE:Factory/.dbxtool.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dbxtool" Tue Sep 22 21:11:25 2020 rev:3 rq:835985 version:8 Changes: -------- --- /work/SRC/openSUSE:Factory/dbxtool/dbxtool.changes 2020-08-16 20:27:53.210118418 +0200 +++ /work/SRC/openSUSE:Factory/.dbxtool.new.4249/dbxtool.changes 2020-09-22 21:11:50.119963724 +0200 @@ -1,0 +2,6 @@ +Tue Sep 22 06:05:40 UTC 2020 - Marcus Meissner <[email protected]> + +- dbxtool-fixes.patch: bigger hammer for integer size mismatch to + fix build on more architectures. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dbxtool-fixes.patch ++++++ --- /var/tmp/diff_new_pack.svcGoq/_old 2020-09-22 21:11:50.639964179 +0200 +++ /var/tmp/diff_new_pack.svcGoq/_new 2020-09-22 21:11:50.639964179 +0200 @@ -13,6 +13,17 @@ } } +@@ -224,8 +224,8 @@ esl_iter_next(esl_iter *iter, efi_guid_t + esl_get_type(iter, &type); + if (iter->len - iter->offset > iter->esl->SignatureListSize) { + warnx("EFI Signature List is malformed"); +- errx(1, "list has %zd bytes left, element is %"PRIu32" bytes", +- iter->len - iter->offset, ++ errx(1, "list has %ld bytes left, element is %"PRIu32" bytes", ++ (long)(iter->len - iter->offset), + iter->esl->SignatureListSize); + } + if (!efi_guid_cmp(&type, &efi_guid_x509_cert)) { @@ -241,8 +241,8 @@ esl_iter_next(esl_iter *iter, efi_guid_t - sizeof (efi_guid_t)) { warnx("X.509 Cert ASN.1 size does not match "
