patch-tty_sh 589 B

123456789101112131415161718192021
  1. $Id: update-patches 24 2008-08-31 14:56:13Z wbx $
  2. --- screen-4.0.3.orig/tty.sh 2003-09-08 16:24:25.000000000 +0200
  3. +++ screen-4.0.3/tty.sh 2008-10-08 14:13:39.000000000 +0200
  4. @@ -659,7 +659,7 @@ char *opt;
  5. while (*opt)
  6. {
  7. - while (index(sep, *opt)) opt++;
  8. + while (strchr(sep, *opt)) opt++;
  9. if (*opt >= '0' && *opt <= '9')
  10. {
  11. if (SetBaud(m, atoi(opt), atoi(opt)))
  12. @@ -745,7 +745,7 @@ char *opt;
  13. }
  14. else
  15. return -1;
  16. - while (*opt && !index(sep, *opt)) opt++;
  17. + while (*opt && !strchr(sep, *opt)) opt++;
  18. }
  19. return 0;
  20. }