Skip to content
Snippets Groups Projects
Commit 3ed84ed6 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

sip: fix inverted logic

Change-Id: I73db506bbeaa58bb7a17f9f4aad405e780ad0c55
Refs: #20853
parent 161cafd9
No related branches found
Tags
No related merge requests found
......@@ -617,8 +617,8 @@ void SIPAccount::unserialize(const Conf::YamlNode &mapNode)
tlsMap->getValue(PRIVATE_KEY_KEY, &tlsPrivateKeyFile_);
tlsMap->getValue(REQUIRE_CERTIF_KEY, &tlsRequireClientCertificate_);
tlsMap->getValue(SERVER_KEY, &tlsServerName_);
tlsMap->getValue(VERIFY_CLIENT_KEY, &tlsVerifyServer_);
tlsMap->getValue(VERIFY_SERVER_KEY, &tlsVerifyClient_);
tlsMap->getValue(VERIFY_CLIENT_KEY, &tlsVerifyClient_);
tlsMap->getValue(VERIFY_SERVER_KEY, &tlsVerifyServer_);
// FIXME
tlsMap->getValue(TIMEOUT_KEY, &tlsNegotiationTimeoutSec_);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment