X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_unchecked.py;h=779f6765c0418e711502d2d8b1e76a9f3c689ba3;hb=e79e9a1395528354b5978fc4b92a8fcdd1559d70;hp=123fd9f37e7e6f7316300f8b98c90452b12a086c;hpb=7c58b4d5fe05599ff987bf9808a05801953a9426;p=dak.git diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index 123fd9f3..779f6765 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -919,8 +919,10 @@ def check_urgency (): ################################################################################ def check_hashes (): - utils.check_hash(".changes", files, "md5sum", apt_pkg.md5sum) - utils.check_hash(".dsc", dsc_files, "md5sum", apt_pkg.md5sum) + utils.check_hash(".changes", files, "md5", apt_pkg.md5sum) + utils.check_size(".changes", files) + utils.check_hash(".dsc", dsc_files, "md5", apt_pkg.md5sum) + utils.check_size(".dsc", dsc_files) # This is stupid API, but it'll have to do for now until # we actually have proper abstraction