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:00 +0200
commitc3d6ed463c42f4f1da689d1faf4d09073f331355 (patch)
tree8fc7db1fee489dce6b3180d34cd9bb18b8438e7c
parent1fabdc9841dbf163935c3702a41ad3020b78146c (diff)
downloadlibqmi-c3d6ed463c42f4f1da689d1faf4d09073f331355.tar.gz
qmi-network: avoid more bashisms when comparing strings
-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