diff options
author | Timo Teräs <timo.teras@iki.fi> | 2021-10-25 17:14:00 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2021-11-03 15:37:10 +0200 |
commit | 6941aac4c6379bebe7ee0a759f4a4b6df03c3984 (patch) | |
tree | 433547a797a841c6ac23bc442c21306bdd1405cb /src/apk_package.h | |
parent | 40f08663679246edaa578d87e9f153adaad62a87 (diff) | |
download | apk-tools-6941aac4c6379bebe7ee0a759f4a4b6df03c3984.tar.gz apk-tools-6941aac4c6379bebe7ee0a759f4a4b6df03c3984.tar.bz2 apk-tools-6941aac4c6379bebe7ee0a759f4a4b6df03c3984.tar.xz apk-tools-6941aac4c6379bebe7ee0a759f4a4b6df03c3984.zip |
db, audit: support sha256-160 hashes for v3 pkg compat
Diffstat (limited to 'src/apk_package.h')
-rw-r--r-- | src/apk_package.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/apk_package.h b/src/apk_package.h index 246b2ae..d94d73a 100644 --- a/src/apk_package.h +++ b/src/apk_package.h @@ -67,6 +67,7 @@ struct apk_installed_package { unsigned broken_files : 1; unsigned broken_script : 1; unsigned broken_xattr : 1; + unsigned sha256_160 : 1; }; struct apk_package { |