summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Client/ClientSession.cpp')
-rw-r--r--Swiften/Client/ClientSession.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Client/ClientSession.cpp b/Swiften/Client/ClientSession.cpp
index 4e34417..1114336 100644
--- a/Swiften/Client/ClientSession.cpp
+++ b/Swiften/Client/ClientSession.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2010-2016 Isode Limited. 2 * Copyright (c) 2010-2019 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -88,7 +88,7 @@ ClientSession::ClientSession(
88 authenticationPort(-1) { 88 authenticationPort(-1) {
89#ifdef SWIFTEN_PLATFORM_WIN32 89#ifdef SWIFTEN_PLATFORM_WIN32
90if (WindowsRegistry::isFIPSEnabled()) { 90if (WindowsRegistry::isFIPSEnabled()) {
91 SWIFT_LOG(info) << "Windows is running in FIPS-140 mode. Some authentication methods will be unavailable." << std::endl; 91 SWIFT_LOG(info) << "Windows is running in FIPS-140 mode. Some authentication methods will be unavailable.";
92} 92}
93#endif 93#endif
94} 94}
@@ -531,7 +531,7 @@ void ClientSession::finish() {
531 finishSession(std::shared_ptr<Error>()); 531 finishSession(std::shared_ptr<Error>());
532 } 532 }
533 else { 533 else {
534 SWIFT_LOG(warning) << "Session already finished or finishing." << std::endl; 534 SWIFT_LOG(warning) << "Session already finished or finishing.";
535 } 535 }
536} 536}
537 537
@@ -544,7 +544,7 @@ void ClientSession::finishSession(std::shared_ptr<Swift::Error> error) {
544 error_ = error; 544 error_ = error;
545 } 545 }
546 else { 546 else {
547 SWIFT_LOG(warning) << "Session finished twice" << std::endl; 547 SWIFT_LOG(warning) << "Session finished twice";
548 } 548 }
549 assert(stream->isOpen()); 549 assert(stream->isOpen());
550 if (stanzaAckResponder_) { 550 if (stanzaAckResponder_) {