diff options
author | Ron Yorston <rmy@pobox.com> | 2023-02-04 08:16:29 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2023-02-04 08:16:29 +0000 |
commit | 0708c8a68dfaf39ec9c48e477ff44a5c6c7d497c (patch) | |
tree | a17f1716235ee345a74c6ca36a01c74661e2785d /shell | |
parent | 6e9d680e5bd72f30eb6c8a6972b9653086e4ac90 (diff) | |
download | busybox-w32-0708c8a68dfaf39ec9c48e477ff44a5c6c7d497c.tar.gz busybox-w32-0708c8a68dfaf39ec9c48e477ff44a5c6c7d497c.tar.bz2 busybox-w32-0708c8a68dfaf39ec9c48e477ff44a5c6c7d497c.zip |
Fix POSIX build
A misplaced #endif in ash and the wrong sense of a test in
parse_config.c broke the POSIX build.
Diffstat (limited to 'shell')
-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 7b9b9f1e1..a24ed0ac8 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -7372,8 +7372,8 @@ expbackq(union node *cmd, int flag IF_BASH_PROCESS_SUBST(, int ctl)) | |||
7372 | if (dest > ((char *)stackblock() + startloc) && dest[-1] == '\r') { | 7372 | if (dest > ((char *)stackblock() + startloc) && dest[-1] == '\r') { |
7373 | STUNPUTC(dest); | 7373 | STUNPUTC(dest); |
7374 | } | 7374 | } |
7375 | } | ||
7376 | #endif | 7375 | #endif |
7376 | } | ||
7377 | expdest = dest; | 7377 | expdest = dest; |
7378 | 7378 | ||
7379 | if (!(flag & EXP_QUOTED)) | 7379 | if (!(flag & EXP_QUOTED)) |