selftests: fib rule: Make 'getmatch' and 'match' local variables

Let's restrict the scope of these variables to avoid possible
interferences.

Signed-off-by: Guillaume Nault <gnault@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Guillaume Nault 2022-01-31 16:42:01 +01:00 committed by David S. Miller
parent 1d02c03986
commit 8af2ba9a78

View File

@ -115,6 +115,9 @@ fib_rule6_test_match_n_redirect()
fib_rule6_test()
{
local getmatch
local match
# setup the fib rule redirect route
$IP -6 route add table $RTABLE default via $GW_IP6 dev $DEV onlink
@ -184,6 +187,9 @@ fib_rule4_test_match_n_redirect()
fib_rule4_test()
{
local getmatch
local match
# setup the fib rule redirect route
$IP route add table $RTABLE default via $GW_IP4 dev $DEV onlink