ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1"
This commit is contained in:
@ -9665,7 +9665,7 @@ shiftcmd(int argc UNUSED_PARAM, char **argv)
|
||||
if (argv[1])
|
||||
n = number(argv[1]);
|
||||
if (n > shellparam.nparam)
|
||||
n = shellparam.nparam;
|
||||
n = 0; /* bash compat, was = shellparam.nparam; */
|
||||
INT_OFF;
|
||||
shellparam.nparam -= n;
|
||||
for (ap1 = shellparam.p; --n >= 0; ap1++) {
|
||||
|
Reference in New Issue
Block a user