Skip to content

Commit 23b6d77

Browse files
committed
docs: fix typo in appx comments
1 parent 4c3a1e8 commit 23b6d77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ static int appx_write_central_directory(BIO *bio, ZIP_FILE *zip, int removeSigna
912912
uint16_t noEntries = 0;
913913

914914
for (entry = zip->centralDirectoryHead; entry != NULL; entry = entry->next) {
915-
/* the signature file is considered non existent for hashing purposes */
915+
/* the signature file is considered nonexistent for hashing purposes */
916916
uint64_t sizeOnDisk = 0;
917917
if (noEntries > zip->centralDirectoryRecordCount) {
918918
fprintf(stderr, "Corrupted central directory structure\n");
@@ -1187,7 +1187,7 @@ static int appx_compare_hashes(FILE_FORMAT_CTX *ctx)
11871187
return 0; /* FAILED */
11881188
}
11891189
} else if (!ctx->appx_ctx->calculatedCIHash && !ctx->appx_ctx->existingCIHash) {
1190-
/* this is fine, CI file is optional -> if it is missing we expect both hashes to be non existent */
1190+
/* this is fine, CI file is optional -> if it is missing we expect both hashes to be nonexistent */
11911191
} else {
11921192
fprintf(stderr, "Code Integrity hash missing\n");
11931193
return 0; /* FAILED */

0 commit comments

Comments
 (0)