1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-06-29 02:19:17 +08:00

ssl-opt.sh: Fix requires_config_value_exactly

Fix comparison bug in requires_config_value_exactly.
This commit is contained in:
Arto Kinnunen 2019-09-27 13:06:25 +03:00
parent c457ab1c2b
commit 13db25fbe9

View File

@ -210,7 +210,7 @@ requires_config_value_exactly() {
# Should never happen
echo "Mbed TLS configuration $1 is not defined"
exit 1
elif [ "$VAL" -eq "$2" ]; then
elif [ "$VAL" -ne "$2" ]; then
SKIP_NEXT="YES"
fi
}