summaryrefslogtreecommitdiffstats
path: root/src/libarchive-test.c
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2017-08-13 03:20:13 (GMT)
committerTony Theodore <tonyt@logyst.com>2017-08-13 03:20:13 (GMT)
commit909c82b99e98aac84cbc346ee263f574f564a6f8 (patch)
tree7787d343944f682cbc265ebf776d13b3b63837e2 /src/libarchive-test.c
parenta31891146d1cdc612d51be4f863240a816245399 (diff)
downloadmxe-909c82b99e98aac84cbc346ee263f574f564a6f8.zip
mxe-909c82b99e98aac84cbc346ee263f574f564a6f8.tar.gz
mxe-909c82b99e98aac84cbc346ee263f574f564a6f8.tar.bz2
libarchive: use nettle instead of bcrypt for CNG(Crypto Next Generation)
fixes #1876 closes #1877
Diffstat (limited to 'src/libarchive-test.c')
-rw-r--r--src/libarchive-test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libarchive-test.c b/src/libarchive-test.c
index 65f87b3..df42857 100644
--- a/src/libarchive-test.c
+++ b/src/libarchive-test.c
@@ -7,6 +7,7 @@
int main(int argc, char *argv[])
{
struct archive *tgz;
+ struct archive *zip;
(void)argc;
(void)argv;
@@ -16,5 +17,8 @@ int main(int argc, char *argv[])
archive_write_set_format_ustar(tgz);
archive_write_free(tgz);
+ zip = archive_read_new();
+ archive_read_support_format_zip(zip);
+
return 0;
}