Skip to content

Commit 9ba9485

Browse files
gobenjidavem330
authored andcommitted
net: selftests: Fix optstring
The cited commit added a stray colon to the 'v' option. That makes the option work incorrectly. ex: tools/testing/selftests/net# ./fib_nexthops.sh -v (should enable verbose mode, instead it shows help text due to missing arg) Fixes: 5feba47 ("selftests: fib_nexthops: Make ping timeout configurable") Reviewed-by: Ido Schimmel <[email protected]> Signed-off-by: Benjamin Poirier <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent c46e78b commit 9ba9485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/testing/selftests/net/fib_nexthops.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2283,7 +2283,7 @@ EOF
22832283
################################################################################
22842284
# main
22852285

2286-
while getopts :t:pP46hv:w: o
2286+
while getopts :t:pP46hvw: o
22872287
do
22882288
case $o in
22892289
t) TESTS=$OPTARG;;

0 commit comments

Comments
 (0)