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 | |
| parent | 37aac6489eb4177539218489074a25edab23e2dd (diff) | |
| download | busybox-w32-be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd.tar.gz busybox-w32-be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd.tar.bz2 busybox-w32-be8a6ae6ebc636d4f58d24a3d3b0c19f164952dd.zip | |
Fix vstype[] to match VS* defines. Patch from OpenWrt by mbm.
| -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) | |||
| 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); |
