]> git.pld-linux.org Git - packages/glibc.git/commitdiff
- fix this patch. sync with patch commited to libc-alpha.
authorlukasz <lukasz@pld-linux.org>
Fri, 1 Jun 2001 22:00:38 +0000 (22:00 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
B4000000 is a upper limit.

Changed files:
    glibc-speed.patch -> 1.2

glibc-speed.patch

index 06647979d782e1a3083415b46f75bfee8ae8ed97..0844babcaa37b201191ff27fc9882e9f6cdece11 100644 (file)
@@ -6,7 +6,7 @@ diff -ru glibc-2.2.3.org/sysdeps/unix/sysv/linux/speed.c glibc-2.2.3/sysdeps/uni
  {
    if ((speed & ~CBAUD) != 0
 -      && (speed < B57600 || speed > B460800))
-+      && (speed < B57600 ))
++      && (speed < B57600 || speed > B4000000))
      {
        __set_errno (EINVAL);
        return -1;
@@ -15,7 +15,7 @@ diff -ru glibc-2.2.3.org/sysdeps/unix/sysv/linux/speed.c glibc-2.2.3/sysdeps/uni
  {
    if ((speed & ~CBAUD) != 0
 -      && (speed < B57600 || speed > B460800))
-+      && (speed < B57600 ))
++      && (speed < B57600 || speed > B4000000))
      {
        __set_errno (EINVAL);
        return -1;
This page took 0.037657 seconds and 4 git commands to generate.