summaryrefslogtreecommitdiff
path: root/proto/static
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2019-02-08 13:38:12 +0100
committerMaria Matejka <mq@ucw.cz>2019-02-20 22:30:54 +0100
commit4f082dfa892e95f86ca8137410992a248110b6ef (patch)
treee5dbd45a36579f82da8de060d137980f4e2a651b /proto/static
parent0a793ebc6059f4354c62ccec62ef7c950988ca4a (diff)
Filter: merged filter instruction constructors, counting line size on instruction construct
Diffstat (limited to 'proto/static')
-rw-r--r--proto/static/config.Y2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/static/config.Y b/proto/static/config.Y
index 0e53c978..3e9ac578 100644
--- a/proto/static/config.Y
+++ b/proto/static/config.Y
@@ -139,7 +139,7 @@ stat_route:
stat_route_item:
cmd {
if (this_srt_last_cmd)
- f_inst_next(this_srt_last_cmd, $1);
+ this_srt_last_cmd->next = $1;
else
this_srt_cmds = $1;
this_srt_last_cmd = $1;