diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-07-11 12:51:43 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-07-11 12:51:43 +0200 |
commit | 39aabfe8f033c9c62acf676b660dc979714d26a7 (patch) | |
tree | c6d6cc7445850240bebe9deddddd124d9e5453e8 /editors/awk.c | |
parent | 4ef8841b21e27e7c7f58d3c9901c833b4fa5a862 (diff) | |
download | busybox-w32-39aabfe8f033c9c62acf676b660dc979714d26a7.tar.gz busybox-w32-39aabfe8f033c9c62acf676b660dc979714d26a7.tar.bz2 busybox-w32-39aabfe8f033c9c62acf676b660dc979714d26a7.zip |
awk: unbreak "cmd" | getline
function old new delta
evaluate 3337 3343 +6
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/awk.c')
-rw-r--r-- | editors/awk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/awk.c b/editors/awk.c index e765d3fcf..6c60a0615 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -3156,7 +3156,8 @@ static var *evaluate(node *op, var *res) | |||
3156 | if (op1) { | 3156 | if (op1) { |
3157 | rsm = newfile(L.s); | 3157 | rsm = newfile(L.s); |
3158 | if (!rsm->F) { | 3158 | if (!rsm->F) { |
3159 | if (opinfo == TI_PGETLINE) { | 3159 | /* NB: can't use "opinfo == TI_PGETLINE", would break "cmd" | getline */ |
3160 | if ((opinfo & OPCLSMASK) == OC_PGETLINE) { | ||
3160 | rsm->F = popen(L.s, "r"); | 3161 | rsm->F = popen(L.s, "r"); |
3161 | rsm->is_pipe = TRUE; | 3162 | rsm->is_pipe = TRUE; |
3162 | } else { | 3163 | } else { |