diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-16 01:21:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-16 01:21:50 +0000 |
commit | c9eaa8b9ba58a4c6fb78a62a68068ac5bb51fd3d (patch) | |
tree | 182008a9631c2fe062409bbb7b49578ae8028235 /libio/ioputs.c | |
parent | 7d7fe004f3557abc2d5d93e9a6392f18c4a94909 (diff) | |
download | glibc-c9eaa8b9ba58a4c6fb78a62a68068ac5bb51fd3d.zip glibc-c9eaa8b9ba58a4c6fb78a62a68068ac5bb51fd3d.tar.gz glibc-c9eaa8b9ba58a4c6fb78a62a68068ac5bb51fd3d.tar.bz2 |
Update.
1999-08-10 H.J. Lu <hjl@gnu.org>
* stdio-common/vfprintf.c (ORIENT): Check for the old stream.
(vfprintf): Likewise.
* stdio-common/vfscanf.c (ORIENT): Likewise.
* libio/genops.c (__underflow): Likewise.
(__uflow): Likewise.
* libio/iofputs.c (_IO_fputs): Likewise.
* libio/ioftell.c (_IO_ftell): Likewise.
* libio/iofwrite.c (_IO_fwrite): Likewise.
* libio/ioputs.c (_IO_puts): Likewise.
* libio/iosetbuffer.c (_IO_setbuffer): Likewise.
* libio/iosetvbuf.c (_IO_setvbuf): Likewise.
Diffstat (limited to 'libio/ioputs.c')
-rw-r--r-- | libio/ioputs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/ioputs.c b/libio/ioputs.c index 954b0f2..86ae790 100644 --- a/libio/ioputs.c +++ b/libio/ioputs.c @@ -36,7 +36,7 @@ _IO_puts (str) _IO_stdout); _IO_flockfile (_IO_stdout); - if (_IO_fwide (_IO_stdout, -1) == -1 + if (_IO_stdout->_vtable_offset != 0 || _IO_fwide (_IO_stdout, -1) == -1) && _IO_sputn (_IO_stdout, str, len) == len && _IO_putc_unlocked ('\n', _IO_stdout) != EOF) result = len + 1; |