]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 25 Aug 1999 04:38:09 +0000 (04:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 25 Aug 1999 04:38:09 +0000 (04:38 +0000)
* libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead
of __overflow.

ChangeLog
libio/fileops.c

index ea210bbc099fde3f0d42a32b9cbc8a2bd8f81b21..f296f0dc4d13c8064c4e48b0d2bbb1364989afc8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-08-24  Ulrich Drepper  <drepper@cygnus.com>
 
+       * libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead
+       of __overflow.
+
        * conform/conformtest.pl (@headers): Add monetary.h-data,
        mqueue.h-data, ndbm.h-data, nl_types.h-data, and poll.h-data.
        * conform/data/monetary.h-data: New file.
index 7c6e2714955e7944cb988ec09d7adaa139c23a60..52039a4a13bbce59d52740722b32a1049981d61f 100644 (file)
@@ -812,7 +812,7 @@ _IO_new_file_xsputn (f, data, n)
     {
       _IO_size_t block_size, do_write;
       /* Next flush the (full) buffer. */
-      if (__overflow (f, EOF) == EOF)
+      if (_IO_OVERFLOW (f, EOF) == EOF)
        return n - to_do;
 
       /* Try to maintain alignment: write a whole number of blocks.