fix for race condition with process creation and terminal process group; changes to printf builtin for multibyte characters

This commit is contained in:
Chet Ramey
2023-09-11 10:09:22 -04:00
parent aab2c1fb1d
commit 32826f717d
19 changed files with 9543 additions and 9559 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ finfo_main(int argc, char **argv)
case 'p': flags |= OPT_PERM; break;
case 'P':
flags |= OPT_PMASK;
pmask = octal(sh_optarg);
pmask = read_octal(sh_optarg);
if (pmask < 0) {
builtin_error ("invalid mode: %s", sh_optarg);
return(1);