diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-06-14 00:45:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-06-14 00:45:57 +0000 |
commit | 6999d70e2fdee6297545aa593cfcd8bf2d35afd3 (patch) | |
tree | 6d0ae4f853c27a6de4721bcdf9674c60bae43420 /sysdeps/unix/sysv/linux/speed.c | |
parent | d002205fd2688a6be32bed2e61ffa3192a0105be (diff) | |
download | glibc-6999d70e2fdee6297545aa593cfcd8bf2d35afd3.tar.gz glibc-6999d70e2fdee6297545aa593cfcd8bf2d35afd3.tar.xz glibc-6999d70e2fdee6297545aa593cfcd8bf2d35afd3.zip |
Update.
* libio/iolibio.h (_IO_freopen): Correct last parameter to _IO_file_open. (_IO_freopen64): Likewise. Reported by simanek@quantum.karlov.mff.cuni.cz [PR libc/2326]. * elf/elf.h: Add a few more EM_* constants. 2001-06-12 Bruno Haible <haible@clisp.cons.org> * intl/dcigettext.c (DCIGETTEXT): Release the lock before returning. 2001-06-09 Ben Collins <bcollins@debian.org> * sysdeps/unix/sysv/linux/bits/termios.h: Define __MAX_BAUD. * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise. * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise. * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise. * sysdeps/unix/sysv/linux/speed.c: Use __MAX_BAUD instead of hardcoded B400000. 2001-06-13 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/speed.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/speed.c b/sysdeps/unix/sysv/linux/speed.c index 075c01de3f..96ae27c82f 100644 --- a/sysdeps/unix/sysv/linux/speed.c +++ b/sysdeps/unix/sysv/linux/speed.c @@ -60,7 +60,7 @@ cfsetospeed (termios_p, speed) speed_t speed; { if ((speed & ~CBAUD) != 0 - && (speed < B57600 || speed > B4000000)) + && (speed < B57600 || speed > __MAX_BAUD)) { __set_errno (EINVAL); return -1; @@ -82,7 +82,7 @@ cfsetispeed (termios_p, speed) speed_t speed; { if ((speed & ~CBAUD) != 0 - && (speed < B57600 || speed > B4000000)) + && (speed < B57600 || speed > __MAX_BAUD)) { __set_errno (EINVAL); return -1; |