summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Swiften/Session/BasicSessionStream.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Swiften/Session/BasicSessionStream.cpp b/Swiften/Session/BasicSessionStream.cpp
index 183b986..3e65640 100644
--- a/Swiften/Session/BasicSessionStream.cpp
+++ b/Swiften/Session/BasicSessionStream.cpp
@@ -122,3 +122,3 @@ void BasicSessionStream::addTLSEncryption() {
bool BasicSessionStream::isTLSEncrypted() {
- return streamStack->getLayer<TLSLayer>() != nullptr;
+ return streamStack->getLayer<TLSLayer>();
}
@@ -146,4 +146,3 @@ bool BasicSessionStream::supportsZLibCompression() {
void BasicSessionStream::addZLibCompression() {
- auto compressionLayer = std::make_unique<CompressionLayer>();
- streamStack->addLayer(std::move(compressionLayer));
+ streamStack->addLayer(std::make_unique<CompressionLayer>());
}