Bash-5.2-rc1 release

This commit is contained in:
Chet Ramey
2022-06-17 09:54:51 -04:00
parent 187661b892
commit 6c1407d2a9
92 changed files with 14083 additions and 14216 deletions
+3 -2
View File
@@ -146,7 +146,8 @@ strsub (string, pat, rep, global)
char *string, *pat, *rep;
int global;
{
int patlen, replen, templen, tempsize, repl, i;
size_t patlen, replen, templen, tempsize, i;
int repl;
char *temp, *r;
patlen = strlen (pat);
@@ -189,7 +190,7 @@ strcreplace (string, c, text, flags)
int flags;
{
char *ret, *p, *r, *t;
int len, rlen, ind, tlen;
size_t len, rlen, ind, tlen;
int do_glob, escape_backslash;
do_glob = flags & 1;