summaryrefslogtreecommitdiff
path: root/tests/t_client.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t_client.sh')
-rwxr-xr-xtests/t_client.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/t_client.sh b/tests/t_client.sh
index 674889a..4a8a30f 100755
--- a/tests/t_client.sh
+++ b/tests/t_client.sh
@@ -86,12 +86,12 @@ fail()
get_ifconfig_route()
{
# linux / iproute2? (-> if configure got a path)
- if [ -n "/sbin/ip" ]
+ if [ -n "/bin/ip" ]
then
echo "-- linux iproute2 --"
- /sbin/ip addr show | grep -v valid_lft
- /sbin/ip route show
- /sbin/ip -o -6 route show | grep -v ' cache' | sed -E -e 's/ expires [0-9]*sec//' -e 's/ (mtu|hoplimit|cwnd|ssthresh) [0-9]+//g' -e 's/ (rtt|rttvar) [0-9]+ms//g'
+ /bin/ip addr show | grep -v valid_lft
+ /bin/ip route show
+ /bin/ip -o -6 route show | grep -v ' cache' | sed -E -e 's/ expires [0-9]*sec//' -e 's/ (mtu|hoplimit|cwnd|ssthresh) [0-9]+//g' -e 's/ (rtt|rttvar) [0-9]+ms//g'
return
fi