aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2013-06-28 18:46:13 +0300
committerLasse Collin <lasse.collin@tukaani.org>2013-06-28 18:46:13 +0300
commit78673a08bed5066c81e8a8e90d20e670c28ecfd5 (patch)
tree9ee508fe72fa043e2206fe30796f656543eedfeb /src
parentxz: Fix error detection of fcntl(fd, F_SETFL, flags) calls. (diff)
downloadxz-78673a08bed5066c81e8a8e90d20e670c28ecfd5.tar.xz
xz: Remove an outdated NetBSD-specific comment.
Nowadays errno == EFTYPE is documented in open(2).
Diffstat (limited to 'src')
-rw-r--r--src/xz/file_io.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/xz/file_io.c b/src/xz/file_io.c
index e0f44d03..6598ef6e 100644
--- a/src/xz/file_io.c
+++ b/src/xz/file_io.c
@@ -401,10 +401,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;