aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authormjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-18 09:40:41 +0000
committermjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-18 09:40:41 +0000
commit6d50ca2f7664097a1b2d6cbc24e3316157ffbb60 (patch)
treefd79ac1a438b17440e73cbce5bd35bf591222c8b /shell
parentcd4892baab9363928b3c8280143d80046ea60ac8 (diff)
downloadbusybox-w32-6d50ca2f7664097a1b2d6cbc24e3316157ffbb60.tar.gz
busybox-w32-6d50ca2f7664097a1b2d6cbc24e3316157ffbb60.tar.bz2
busybox-w32-6d50ca2f7664097a1b2d6cbc24e3316157ffbb60.zip
Fix vstype[] to match VS* defines. Patch from OpenWrt by mbm.
git-svn-id: svn://busybox.net/trunk/busybox@8509 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 e27d2e088..eb8706f36 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -7604,7 +7604,7 @@ cmdputs(const char *s)
7604 int quoted = 0; 7604 int quoted = 0;
7605 static const char *const vstype[16] = { 7605 static const char *const vstype[16] = {
7606 nullstr, "}", "-", "+", "?", "=", 7606 nullstr, "}", "-", "+", "?", "=",
7607 "#", "##", "%", "%%" 7607 "%", "%%", "#", "##", nullstr
7608 }; 7608 };
7609 7609
7610 nextc = makestrspace((strlen(s) + 1) * 8, cmdnextc); 7610 nextc = makestrspace((strlen(s) + 1) * 8, cmdnextc);