You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.0 KiB

  1. Index: bash-4.4/builtins/read.def
  2. ===================================================================
  3. --- bash-4.4.orig/builtins/read.def
  4. +++ bash-4.4/builtins/read.def
  5. @@ -181,7 +181,8 @@ read_builtin (list)
  6. WORD_LIST *list;
  7. {
  8. register char *varname;
  9. - int size, i, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
  10. + int size, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
  11. + volatile int i;
  12. int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul;
  13. int raw, edit, nchars, silent, have_timeout, ignore_delim, fd, lastsig, t_errno;
  14. unsigned int tmsec, tmusec;
  15. Index: bash-4.4/patchlevel.h
  16. ===================================================================
  17. --- bash-4.4.orig/patchlevel.h
  18. +++ bash-4.4/patchlevel.h
  19. @@ -25,6 +25,6 @@
  20. regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
  21. looks for to find the patch level (for the sccs version string). */
  22. -#define PATCHLEVEL 9
  23. +#define PATCHLEVEL 10
  24. #endif /* _PATCHLEVEL_H_ */