summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2017-01-20 15:38:38 -0500
committerChet Ramey <chet.ramey@case.edu>2017-01-20 15:38:38 -0500
commit5b9762d6f0cd36ff1b88bde22efa30ad0ed27ec6 (patch)
treef6b46b20cb3d46634a68eceb903a45adaace7d31
parente59fb114e9c0436890d110cfdda4d794a63496e7 (diff)
downloadbash-5b9762d6f0cd36ff1b88bde22efa30ad0ed27ec6.tar.gz
Bash-4.4 patch 10
-rw-r--r--builtins/read.def3
-rw-r--r--patchlevel.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/builtins/read.def b/builtins/read.def
index 48fda330..33821f3f 100644
--- a/builtins/read.def
+++ b/builtins/read.def
@@ -181,7 +181,8 @@ read_builtin (list)
WORD_LIST *list;
{
register char *varname;
- int size, i, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
+ int size, nr, pass_next, saw_escape, eof, opt, retval, code, print_ps2;
+ volatile int i;
int input_is_tty, input_is_pipe, unbuffered_read, skip_ctlesc, skip_ctlnul;
int raw, edit, nchars, silent, have_timeout, ignore_delim, fd, lastsig, t_errno;
unsigned int tmsec, tmusec;
diff --git a/patchlevel.h b/patchlevel.h
index 02f1d606..8002af70 100644
--- a/patchlevel.h
+++ b/patchlevel.h
@@ -25,6 +25,6 @@
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
looks for to find the patch level (for the sccs version string). */
-#define PATCHLEVEL 9
+#define PATCHLEVEL 10
#endif /* _PATCHLEVEL_H_ */