summaryrefslogtreecommitdiff
path: root/ChangeLog
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 /ChangeLog
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 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 023ac4c54d..26740f8a64 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,9 +6,9 @@ Sat Jan 7 15:40:07 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
Sat Jan 7 06:24:18 2006 Tanaka Akira <akr@m17n.org>
* eval.c (rb_fd_isset): compare the result of FD_ISSET with 0 to
- avoid BSD bug. BSD defines FD_ISSET as just a bitmap of unsigned
- long. So returning the value from rb_fd_isset discards upper
- 32bits on LP64 environment.
+ avoid FreeBSD bug. FreeBSD defines FD_ISSET as just a bitmap of
+ unsigned long. So returning the value from rb_fd_isset discards
+ upper 32bits on LP64 environment.
http://www.freebsd.org/cgi/query-pr.cgi?pr=ia64/91421
Fri Jan 6 02:20:18 2006 Tanaka Akira <akr@m17n.org>