Fixed files are mistakenly listed as encrypted. #359

This commit is contained in:
Nathan Moinvaziri 2019-01-16 11:15:00 -08:00
parent 2ca7f3950c
commit e7ede97c07

View File

@ -145,6 +145,8 @@ int32_t minizip_list(const char *path)
/* Display a '*' if the file is encrypted */
if (file_info->flag & MZ_ZIP_FLAG_ENCRYPTED)
crypt = '*';
else
crypt = ' ';
switch (file_info->compression_method)
{