diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-04-06 00:43:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-04-06 00:43:48 +0000 |
commit | 72de2dcd21cb71e7c29d0e77c24a1f389f9af0c3 (patch) | |
tree | 10f838c1813360ff092474a7a00e3324b3294fd0 /libio/fileops.c | |
parent | ab8080455c19a7c5e77a5a22f70741ac2be108de (diff) | |
download | glibc-72de2dcd21cb71e7c29d0e77c24a1f389f9af0c3.tar glibc-72de2dcd21cb71e7c29d0e77c24a1f389f9af0c3.tar.gz glibc-72de2dcd21cb71e7c29d0e77c24a1f389f9af0c3.tar.bz2 glibc-72de2dcd21cb71e7c29d0e77c24a1f389f9af0c3.zip |
(_IO_file_overflow): Set error when try to write on a read-only
stream.
Diffstat (limited to 'libio/fileops.c')
-rw-r--r-- | libio/fileops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libio/fileops.c b/libio/fileops.c index 3a0bdaaa62..3d494e31c1 100644 --- a/libio/fileops.c +++ b/libio/fileops.c @@ -317,6 +317,7 @@ DEFUN(_IO_file_overflow, (f, ch), { if (f->_flags & _IO_NO_WRITES) /* SET ERROR */ { + f->_flags |= _IO_ERR_SEEN; __set_errno (EBADF); return EOF; } |