Commit dd98c05a authored by Vitaly Lipatov's avatar Vitaly Lipatov

router: fix vlog in lookup_table polluting table variable via stdout

vlog output was captured by command substitution table=$(lookup_table ...), corrupting the table number with log text. Redirect to stderr. Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent cb5394ee
......@@ -157,7 +157,7 @@ lookup_table()
num=$(echo "$gateway" | sed -E 's/.*[.:]([0-9]+)$/\1/')
if [ -n "$num" ] ; then
echo "$num $name" >> /etc/iproute2/rt_tables
vlog "Added rt_tables entry: $num $name"
vlog "Added rt_tables entry: $num $name" >&2
fi
echo "$num"
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment