summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-08 04:14:11 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-08 04:14:11 +0000
commit5695c588c0c49967c7dc4787b79044c8331a0e98 (patch)
tree03315338a6f557bb3be96166bf6c0f0dc327bbed /eval.c
parent94fc5c9878cbc01299c9f7f8944d0d1e552e5227 (diff)
the bug was FreeBSD specific.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 4705e06d25..9fb3f7330e 100644
--- a/eval.c
+++ b/eval.c
@@ -9644,7 +9644,7 @@ rb_fd_isset(n, fds)
const rb_fdset_t *fds;
{
if (n >= fds->maxfd) return 0;
- return FD_ISSET(n, fds->fdset) != 0; /* "!= 0" avoids BSD bug */
+ return FD_ISSET(n, fds->fdset) != 0; /* "!= 0" avoids FreeBSD bug */
}
void