diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2013-06-28 18:46:13 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2013-06-28 22:04:40 +0300 |
commit | 265e7b44d804b47373f10b7da28350db7611cea6 (patch) | |
tree | 674fcfa0e289ea892d5afe106d52dad2d938dedc /src/xz | |
parent | xz: Fix error detection of fcntl(fd, F_SETFL, flags) calls. (diff) | |
download | xz-265e7b44d804b47373f10b7da28350db7611cea6.tar.xz |
xz: Remove an outdated NetBSD-specific comment.
Nowadays errno == EFTYPE is documented in open(2).
Diffstat (limited to 'src/xz')
-rw-r--r-- | src/xz/file_io.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/xz/file_io.c b/src/xz/file_io.c index f601c564..a97dbfa2 100644 --- a/src/xz/file_io.c +++ b/src/xz/file_io.c @@ -398,10 +398,6 @@ io_open_src_real(file_pair *pair) was_symlink = true; # elif defined(__NetBSD__) - // As of 2010-09-05, NetBSD doesn't document what errno is - // used with O_NOFOLLOW. It is EFTYPE though, and I - // understood that is very unlikely to change even though - // it is undocumented. if (errno == EFTYPE) was_symlink = true; |