git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14776 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2007-12-28 18:10:31 +00:00
Родитель 57bb055c93
Коммит b3c2e224d3
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat Dec 29 03:10:12 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* io.c (io_unread): fix typo.
Sat Dec 29 02:18:45 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* io.c (io_unread): adhoc workaround for non-binary mode of some DOSish

3
io.c
Просмотреть файл

@ -294,9 +294,8 @@ io_unread(rb_io_t *fptr)
r = lseek(fptr->fd, -len, SEEK_CUR);
}
else
#else
r = lseek(fptr->fd, -fptr->rbuf_len, SEEK_CUR);
#endif
r = lseek(fptr->fd, -fptr->rbuf_len, SEEK_CUR);
if (r < 0) {
if (errno == ESPIPE)
fptr->mode |= FMODE_DUPLEX;