diff options
author | Andrey Oleynik <aoleynik@luxoft.com> | 2016-07-15 13:50:22 +0300 |
---|---|---|
committer | Andrey Oleynik <aoleynik@luxoft.com> | 2016-07-15 13:50:22 +0300 |
commit | ba0cfe1c9b7dc388dd8c35c4b7b6fa8dfe92bc9d (patch) | |
tree | dc4c762b798f9c0b2f4fdcfd3c2bcdce74cd0e95 /src | |
parent | 2761539513429f53a7f2d7f80b68eb8e7b1bdb99 (diff) | |
download | sdl_core-ba0cfe1c9b7dc388dd8c35c4b7b6fa8dfe92bc9d.tar.gz |
Fixes SSL context setting during handshake
Relates-to: APPLINK-26566
Diffstat (limited to 'src')
-rw-r--r-- | src/components/application_manager/src/application_manager_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/application_manager/src/application_manager_impl.cc b/src/components/application_manager/src/application_manager_impl.cc index 8ec093d99a..2c67032818 100644 --- a/src/components/application_manager/src/application_manager_impl.cc +++ b/src/components/application_manager/src/application_manager_impl.cc @@ -1264,8 +1264,8 @@ ApplicationManagerImpl::GetHandshakeContext(uint32_t key) const { using security_manager::SSLContext; ApplicationConstSharedPtr app = application(key); if (app) { - SSLContext::HandshakeContext(custom_str::CustomString(app->policy_app_id()), - app->name()); + return SSLContext::HandshakeContext( + custom_str::CustomString(app->policy_app_id()), app->name()); } return SSLContext::HandshakeContext(); } |