mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-26 22:22:01 +01:00
ssl-opt.sh: Fix requires_config_value_exactly
Fix comparison bug in requires_config_value_exactly.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user