From: Michihiro NAKAJIMA Date: Tue, 9 Oct 2012 12:40:33 +0000 (+0900) Subject: Remove outdated comments. X-Git-Tag: v3.1.0~40^2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e5dbfc53ada12827c01914abcc0dde1995ceca1;p=thirdparty%2Flibarchive.git Remove outdated comments. --- diff --git a/libarchive/archive_read_open_filename.c b/libarchive/archive_read_open_filename.c index 00314c45c..fefcd904d 100644 --- a/libarchive/archive_read_open_filename.c +++ b/libarchive/archive_read_open_filename.c @@ -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)