diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 01:32:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 01:32:40 +0000 |
commit | cc5feabeba2b1cbc3a1751af08f645b868967519 (patch) | |
tree | 03f0407d1ef9b355b5752b0a18384e6966e2a532 | |
parent | 340299a8bc923f548e6889093b6665241f4f0aa8 (diff) | |
download | busybox-w32-cc5feabeba2b1cbc3a1751af08f645b868967519.tar.gz busybox-w32-cc5feabeba2b1cbc3a1751af08f645b868967519.tar.bz2 busybox-w32-cc5feabeba2b1cbc3a1751af08f645b868967519.zip |
ash: NTO2 needs #if ENABLE_ASH_BASH_COMPAT
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index f99c50933..d44de3319 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -7575,7 +7575,9 @@ static const short nodesize[N_NUMBER] = { | |||
7575 | [NDEFUN ] = SHELL_ALIGN(sizeof(struct narg)), | 7575 | [NDEFUN ] = SHELL_ALIGN(sizeof(struct narg)), |
7576 | [NARG ] = SHELL_ALIGN(sizeof(struct narg)), | 7576 | [NARG ] = SHELL_ALIGN(sizeof(struct narg)), |
7577 | [NTO ] = SHELL_ALIGN(sizeof(struct nfile)), | 7577 | [NTO ] = SHELL_ALIGN(sizeof(struct nfile)), |
7578 | #if ENABLE_ASH_BASH_COMPAT | ||
7578 | [NTO2 ] = SHELL_ALIGN(sizeof(struct nfile)), | 7579 | [NTO2 ] = SHELL_ALIGN(sizeof(struct nfile)), |
7580 | #endif | ||
7579 | [NCLOBBER ] = SHELL_ALIGN(sizeof(struct nfile)), | 7581 | [NCLOBBER ] = SHELL_ALIGN(sizeof(struct nfile)), |
7580 | [NFROM ] = SHELL_ALIGN(sizeof(struct nfile)), | 7582 | [NFROM ] = SHELL_ALIGN(sizeof(struct nfile)), |
7581 | [NFROMTO ] = SHELL_ALIGN(sizeof(struct nfile)), | 7583 | [NFROMTO ] = SHELL_ALIGN(sizeof(struct nfile)), |