/* Old SDKs do not provide IO_REPARSE_TAG_SYMLINK */
#define IO_REPARSE_TAG_SYMLINK 0xA000000CL
#endif
-/* To deal with absolute symlink isuues */
+/* To deal with absolute symlink issues */
#define START_ABSOLUTE_SYMLINK_REPARSE L"\\??\\"
/*-
* can be stored in the output buffer directly.
*
* - Code 256 defines a new filter, which is later used to
- * ransform the data block accordingly to the filter type.
+ * transform the data block accordingly to the filter type.
* The data block needs to be fully uncompressed first.
*
* - Code bigger than 257 and smaller than 262 define
/* "Unspecified" lets us choose the appropriate compression. */
zip->requested_compression = COMPRESSION_UNSPECIFIED;
/* Following the 7-zip write support's lead, setting the default
- * compression level explicitely to 6 no matter what. */
+ * compression level explicitly to 6 no matter what. */
zip->compression_level = 6;
/* Following the xar write support's lead, the default number of
* threads is 1 (i.e. the xz compression, the only one caring about
return (ARCHIVE_FATAL);
}
/* Asking for the multi-threaded compressor is a no-op in zstd if
- * it's not supported, so no need to explicitely check for it */
+ * it's not supported, so no need to explicitly check for it */
ZSTD_CCtx_setParameter(zip->stream.zstd.context, ZSTD_c_nbWorkers, zip->threads);
zip->stream.zstd.out.dst = zip->buf;
zip->stream.zstd.out.size = zip->len_buf;
* that ZIP's format is missing the uncompressed_size field.
*
* So we need to write a raw LZMA stream, set up for LZMA1
- * (i.e. the algoritm variant LZMA Alone uses), which was
+ * (i.e. the algorithm variant LZMA Alone uses), which was
* done above in the initialisation but first we need to
* write ZIP's LZMA header, as if it were Stored data. Then
* we can use the raw stream as if it were any other. magic1
#include "test.h"
/*
- * All of the archives for this teset contain four files: a.txt, b.txt, c.txt, and d.txt
- * For solid archives or archvies or archives where filenames are encrypted, all four files are encrypted with the
+ * All of the archives for this test contain four files: a.txt, b.txt, c.txt, and d.txt
+ * For solid archives or archives or archives where filenames are encrypted, all four files are encrypted with the
* password "password". For non-solid archives without filename encryption, a.txt and c.txt are not encrypted, b.txt is
* encrypted with the password "password", and d.txt is encrypted with the password "password2".
*