From: Manuel Novoa III Date: Wed, 18 Feb 2004 09:40:41 +0000 (-0000) Subject: Fix vstype[] to match VS* defines. Patch from OpenWrt by mbm. X-Git-Tag: 1_00_pre8~35 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd;p=oweals%2Fbusybox.git Fix vstype[] to match VS* defines. Patch from OpenWrt by mbm. --- 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);