summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2016-06-30 18:00:16 +0200
committerAleksander Morgado <aleksander@aleksander.es>2016-06-30 18:02:47 +0200
commit83e18236d59a9c6a79bab51700648cae68d296ae (patch)
tree35b380b00fbacd9993aa576bdac0c46719ef410a
parent71a7191de9ae1f8017f93d9df28556b9ce938947 (diff)
downloadlibqmi-83e18236d59a9c6a79bab51700648cae68d296ae.tar.gz
qmi-network: avoid more bashisms when comparing stringsqmi-over-mbim
-rwxr-xr-xutils/qmi-network.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/qmi-network.in b/utils/qmi-network.in
index c9ac8709..c1dbef60 100755
--- a/utils/qmi-network.in
+++ b/utils/qmi-network.in
@@ -275,7 +275,7 @@ Downlink data aggregation max size: '0'"
return
fi
- if [ "$DEVICE_LLP" == "$EXPECTED_LLP" ]; then
+ if [ "$DEVICE_LLP" = "$EXPECTED_LLP" ]; then
echo "Device and kernel link layer protocol match: $DEVICE_LLP"
return
fi