summaryrefslogtreecommitdiff
path: root/src/manifest.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2020-01-11 09:16:38 +0200
committerTimo Teräs <timo.teras@iki.fi>2020-01-11 11:20:48 +0200
commit7caa21773160f9be4d095ce0489d05e8d0131312 (patch)
tree0e023031acbbc2bc1d82de6ba3cfc127cb955e40 /src/manifest.c
parent6da3e8eb15c0456b9908bedfdeced2f3a550b58c (diff)
downloadapk-tools-7caa21773160f9be4d095ce0489d05e8d0131312.tar.gz
apk-tools-7caa21773160f9be4d095ce0489d05e8d0131312.tar.bz2
apk-tools-7caa21773160f9be4d095ce0489d05e8d0131312.tar.xz
apk-tools-7caa21773160f9be4d095ce0489d05e8d0131312.zip
convert remaining locations to use istream instead of bstream
Diffstat (limited to 'src/manifest.c')
-rw-r--r--src/manifest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manifest.c b/src/manifest.c
index adabe61..55fc0af 100644
--- a/src/manifest.c
+++ b/src/manifest.c
@@ -91,7 +91,7 @@ static void process_file(struct apk_database *db, const char *match)
struct manifest_file_ctx ctx = {match, &sctx};
apk_sign_ctx_init(&sctx, APK_SIGN_VERIFY, NULL, db->keys_fd);
- is = apk_bstream_gunzip_mpart(apk_bstream_from_file(AT_FDCWD, match),
+ is = apk_istream_gunzip_mpart(apk_istream_from_file(AT_FDCWD, match),
apk_sign_ctx_mpart_cb, &sctx);
if (IS_ERR_OR_NULL(is)) {