]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Remove outdated comments.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Tue, 9 Oct 2012 12:40:33 +0000 (21:40 +0900)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Tue, 9 Oct 2012 12:40:33 +0000 (21:40 +0900)
libarchive/archive_read_open_filename.c

index 00314c45ca0cb52c4622ccb579cd1e75bf98a035..fefcd904d2c42333815520a6af7e0e906bdc7c32 100644 (file)
@@ -447,9 +447,7 @@ file_skip_lseek(struct archive *a, void *client_data, int64_t request)
        /* TODO: Deal with case where off_t isn't 64 bits.
         * This shouldn't be a problem on Linux or other POSIX
         * systems, since the configuration logic for libarchive
-        * tries to obtain a 64-bit off_t.  It's still an issue
-        * on Windows, though, so it might suffice to just use
-        * _lseeki64() on Windows.
+        * tries to obtain a 64-bit off_t.
         */
        if ((old_offset = lseek(mine->fd, 0, SEEK_CUR)) >= 0 &&
            (new_offset = lseek(mine->fd, request, SEEK_CUR)) >= 0)