diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-02-18 09:40:41 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-02-18 09:40:41 +0000 |
commit | be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd (patch) | |
tree | fd79ac1a438b17440e73cbce5bd35bf591222c8b /shell | |
parent | 37aac6489eb4177539218489074a25edab23e2dd (diff) | |
download | busybox-be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd.tar.gz |
Fix vstype[] to match VS* defines. Patch from OpenWrt by mbm.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index e27d2e088..eb8706f36 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -7604,7 +7604,7 @@ cmdputs(const char *s) int quoted = 0; static const char *const vstype[16] = { nullstr, "}", "-", "+", "?", "=", - "#", "##", "%", "%%" + "%", "%%", "#", "##", nullstr }; nextc = makestrspace((strlen(s) + 1) * 8, cmdnextc); |