diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-06-30 18:00:16 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-06-30 18:02:00 +0200 |
commit | c3d6ed463c42f4f1da689d1faf4d09073f331355 (patch) | |
tree | 8fc7db1fee489dce6b3180d34cd9bb18b8438e7c /utils | |
parent | 1fabdc9841dbf163935c3702a41ad3020b78146c (diff) |
qmi-network: avoid more bashisms when comparing strings
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/qmi-network.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/qmi-network.in b/utils/qmi-network.in index c9ac870..c1dbef6 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 |