Skip to content

Commit

Permalink
Ensure zip members are searched for case-sensitively on all OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
miller-alex committed Mar 6, 2024
1 parent 4cb3b47 commit 70205b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trrntzip.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ int MigrateZip(const char *zip_path, const char *pDir, WORKSPACE *ws,
for (iArray = 0; iArray < ws->iElements && ws->FileNameArray[iArray][0];
iArray++) {
strcpy(szFileName, ws->FileNameArray[iArray]);
rc = unzLocateFile(UnZipHandle, szFileName, 0);
rc = unzLocateFile(UnZipHandle, szFileName, 1);
zip64 = 0;

if (rc == UNZ_OK) {
Expand Down

0 comments on commit 70205b2

Please sign in to comment.