commit bash-20200520 snapshot

This commit is contained in:
Chet Ramey
2020-05-27 09:00:49 -04:00
parent e76c732799
commit ce1a3c07c4
102 changed files with 29297 additions and 18340 deletions
+4 -1
View File
@@ -1408,7 +1408,10 @@ brand ()
unsigned int ret;
rseed = intrand32 (rseed);
ret = (rseed >> 16) ^ (rseed & 65535);
if (shell_compatibility_level > 50)
ret = (rseed >> 16) ^ (rseed & 65535);
else
ret = rseed;
return (ret & BASH_RAND_MAX);
}