From be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Wed, 18 Feb 2004 09:40:41 +0000 Subject: [PATCH] Fix vstype[] to match VS* defines. Patch from OpenWrt by mbm. --- shell/ash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);