This commit is contained in:
Yavor Georgiev 2018-05-14 15:37:34 +03:00
parent 7ad363dafc
commit e58db5f6bd
No known key found for this signature in database
GPG Key ID: 83FC145DA0CCA9C3
1 changed files with 1 additions and 1 deletions

View File

@ -909,7 +909,7 @@ template<typename T>
void SyncClass<T>::populate_sync_config_for_ssl(ContextType ctx, ObjectType config_object, SyncConfig& config) void SyncClass<T>::populate_sync_config_for_ssl(ContextType ctx, ObjectType config_object, SyncConfig& config)
{ {
ValueType validate_ssl = Object::get_property(ctx, config_object, "validate"); ValueType validate_ssl = Object::get_property(ctx, config_object, "validate");
if (Value::is_boolean(ctx, validate_ssl_temp)) { if (Value::is_boolean(ctx, validate_ssl)) {
config.client_validate_ssl = Value::to_boolean(ctx, validate_ssl); config.client_validate_ssl = Value::to_boolean(ctx, validate_ssl);
} }