summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Percival <gperciva@tarsnap.com>2018-11-02 14:19:11 -0700
committerGraham Percival <gperciva@tarsnap.com>2018-11-02 14:22:08 -0700
commit557dcbce6c2a92b1f6b0dd9e223de930505458c8 (patch)
tree50a1566ca9be3324c6c7565d28eda8239589557e
parente5046af9abd2a033240793cfc3fa1d4404105b03 (diff)
downloadlibarchive-557dcbce6c2a92b1f6b0dd9e223de930505458c8.tar.gz
Spelling & grammar fix
Sponsored by: Tarsnap Backup Inc.
-rw-r--r--libarchive/archive_windows.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libarchive/archive_windows.c b/libarchive/archive_windows.c
index 6ff8749a..624e2700 100644
--- a/libarchive/archive_windows.c
+++ b/libarchive/archive_windows.c
@@ -445,7 +445,8 @@ fileTimeToUTC(const FILETIME *filetime, time_t *t, long *ns)
* Windows' stat() does not accept the path added "\\?\" especially "?"
* character.
* It means we cannot access the long name path longer than MAX_PATH.
- * So I've implemented simular Windows' stat() to access the long name path.
+ * So I've implemented a function similar to Windows' stat() to access the
+ * long name path.
* And I've added some feature.
* 1. set st_ino by nFileIndexHigh and nFileIndexLow of
* BY_HANDLE_FILE_INFORMATION.