From aebb1faa198634a318bc14cf1e577f5806fafc38 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 1 Sep 2000 17:49:19 +0000 Subject: Update. * libio/libio.h (_IO_flockfile, _IO_funlockfile): Fix typo in last patch (_mode -> _flags). --- libio/__fpurge.c | 3 ++- libio/libio.h | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'libio') diff --git a/libio/__fpurge.c b/libio/__fpurge.c index dd83d9f520..2956385cbe 100644 --- a/libio/__fpurge.c +++ b/libio/__fpurge.c @@ -24,6 +24,7 @@ General Public License. */ #include +#include "libioP.h" void __fpurge (FILE *fp) @@ -31,7 +32,7 @@ __fpurge (FILE *fp) if (fp->_mode > 0) { /* Wide-char stream. */ - if (_IO_in_wbackup (fp)) + if (_IO_in_backup (fp)) _IO_free_wbackup_area (fp); fp->_wide_data->_IO_read_end = fp->_wide_data->_IO_read_ptr; diff --git a/libio/libio.h b/libio/libio.h index 770cb6d2b3..12826ffe11 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -443,9 +443,9 @@ extern int _IO_ftrylockfile (_IO_FILE *) __THROW; #ifdef _IO_MTSAFE_IO # define _IO_peekc(_fp) _IO_peekc_locked (_fp) # define _IO_flockfile(_fp) \ - if (((_fp)->_mode & _IO_USER_LOCK) == 0) _IO_flockfile (_fp) + if (((_fp)->_flags & _IO_USER_LOCK) == 0) _IO_flockfile (_fp) # define _IO_funlockfile(_fp) \ - if (((_fp)->_mode & _IO_USER_LOCK) == 0) _IO_funlockfile (_fp) + if (((_fp)->_flags & _IO_USER_LOCK) == 0) _IO_funlockfile (_fp) #else # define _IO_peekc(_fp) _IO_peekc_unlocked (_fp) # define _IO_flockfile(_fp) /**/ -- cgit 1.4.1