aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-02-22 11:55:09 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-02-22 11:55:09 +0000
commit4bded58207d81a1ece514bcb87676009843403e1 (patch)
tree1da9b339c76b4c831ad58c3ac28a8117addbfd21
parent817565a0ffe4051cf1ba5c0ae0a779dcf0ac00cf (diff)
downloadbusybox-w32-4bded58207d81a1ece514bcb87676009843403e1.tar.gz
busybox-w32-4bded58207d81a1ece514bcb87676009843403e1.tar.bz2
busybox-w32-4bded58207d81a1ece514bcb87676009843403e1.zip
Patch from Dmitry Zakharov, this line was missedfrom the last patch
-rw-r--r--editors/awk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/awk.c b/editors/awk.c
index 8f746b48c..09fb41d68 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -1045,6 +1045,7 @@ static node *parse_expr(unsigned long iexp) {
1045 if (glptr && (t.info == (OC_COMPARE|VV|P(39)|2))) { 1045 if (glptr && (t.info == (OC_COMPARE|VV|P(39)|2))) {
1046 /* input redirection (<) attached to glptr node */ 1046 /* input redirection (<) attached to glptr node */
1047 cn = glptr->l.n = new_node(OC_CONCAT|SS|P(37)); 1047 cn = glptr->l.n = new_node(OC_CONCAT|SS|P(37));
1048 cn->a.n = glptr;
1048 xtc = TC_OPERAND | TC_UOPPRE; 1049 xtc = TC_OPERAND | TC_UOPPRE;
1049 glptr = NULL; 1050 glptr = NULL;
1050 1051