diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-01 17:49:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-01 17:49:19 +0000 |
commit | aebb1faa198634a318bc14cf1e577f5806fafc38 (patch) | |
tree | 84d2cb338c61c9afeb4dda6d3b01901a182ce0bb /libio/libio.h | |
parent | a8e58aa9ab2667045c1b21e5c1c5e21b075a782f (diff) | |
download | glibc-aebb1faa198634a318bc14cf1e577f5806fafc38.tar.gz glibc-aebb1faa198634a318bc14cf1e577f5806fafc38.tar.xz glibc-aebb1faa198634a318bc14cf1e577f5806fafc38.zip |
Update.
* libio/libio.h (_IO_flockfile, _IO_funlockfile): Fix typo in last patch (_mode -> _flags).
Diffstat (limited to 'libio/libio.h')
-rw-r--r-- | libio/libio.h | 4 |
1 files changed, 2 insertions, 2 deletions
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) /**/ |