aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-12-11 21:13:00 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-12-11 21:13:00 +0000
commit4501dbe5099df8f9b752165af927719c5b06b9b2 (patch)
tree4ac76b4ec0ca0b39aa77490a828ffc0a29407a44 /shell
parent1eb7a17b12a6ee3df8849d00d4ebd2c227ccf1f8 (diff)
downloadbusybox-4501dbe5099df8f9b752165af927719c5b06b9b2.tar.gz
Small bugfix, last_patch72 from Vladimir N. Oleynik
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 715169053..696d554a9 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3932,7 +3932,7 @@ static int typecmd(int argc, char **argv)
argv_a[0] = argv[i];
argptr = argv_a;
optptr = "v";
- err |= hashcmd(argc, argv);
+ err |= hashcmd(2, argv);
}
return err;
}