minizip.c: Check for 'k' and 'K', not 'k' and 'k'.

Found using cppcheck-1.81.
This commit is contained in:
David Korth 2017-11-05 20:14:17 -05:00
parent a6e7d468e3
commit fa7fadebfa

View File

@ -595,7 +595,7 @@ int main(int argc, char *argv[])
if ((c == 's') || (c == 'S'))
options.aes = 1;
#endif
if (((c == 'k') || (c == 'k')) && (i + 1 < argc))
if (((c == 'k') || (c == 'K')) && (i + 1 < argc))
{
disk_size = atoi(argv[i + 1]) * 1024;
i += 1;