Skip to content

Commit 9a2dbb5

Browse files
matttbedavem330
authored andcommitted
selftests: mptcp: pm: rm the right tmp file
"$err" is a variable pointing to a temp file. "$out" is not: only used as a local variable in "check()" and representing the output of a command line. Fixes: eedbc68 (selftests: add PM netlink functional tests) Signed-off-by: Matthieu Baerts <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent efa6a7d commit 9a2dbb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/testing/selftests/net/mptcp/pm_netlink.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ret=0
3030

3131
cleanup()
3232
{
33-
rm -f $out
33+
rm -f $err
3434
ip netns del $ns1
3535
}
3636

0 commit comments

Comments
 (0)