diff options
author | Michihiro NAKAJIMA <ggcueroad@gmail.com> | 2014-09-10 21:52:33 +0900 |
---|---|---|
committer | Michihiro NAKAJIMA <ggcueroad@gmail.com> | 2014-09-10 21:52:33 +0900 |
commit | abdce769f16d60e657b47beb3ec855c5d4325bf5 (patch) | |
tree | 32d176656431893a82f09affc13bce48fe27d889 /libarchive/test/test_write_format_zip.c | |
parent | 2b5df3920c0a4a00b49e6f2e2b48effe5fe60aa3 (diff) | |
download | libarchive-abdce769f16d60e657b47beb3ec855c5d4325bf5.tar.gz |
Document zip:encryption option.
Use 'zipcrypt' insted of 'traditional' for zip:encryption option.
Diffstat (limited to 'libarchive/test/test_write_format_zip.c')
-rw-r--r-- | libarchive/test/test_write_format_zip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/test/test_write_format_zip.c b/libarchive/test/test_write_format_zip.c index c080f6bc..002d18ee 100644 --- a/libarchive/test/test_write_format_zip.c +++ b/libarchive/test/test_write_format_zip.c @@ -682,7 +682,7 @@ DEFINE_TEST(test_write_format_zip_traditional_pkware_encryption) assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_zip(a)); assertEqualIntA(a, ARCHIVE_OK, archive_write_add_filter_none(a)); if (ARCHIVE_OK != archive_write_set_options(a, - "zip:encryption=traditional")) { + "zip:encryption=zipcrypt")) { skipping("This system does not have cryptographic liberary"); archive_write_free(a); return; |