qmi-network: avoid more bashisms when comparing strings

This commit is contained in:
Aleksander Morgado 2016-06-30 18:00:16 +02:00
parent 1fabdc9841
commit c3d6ed463c
1 changed files with 1 additions and 1 deletions

View File

@ -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