From 4cf9c160f318a71400b032ea6d3031b9e6628a56 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Thu, 23 Aug 2018 02:08:50 +0200 Subject: [PATCH] core: Fix build without SSL Seems like an #ifdef was overlooked. --- src/core/corenetwork.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/corenetwork.cpp b/src/core/corenetwork.cpp index d7d259b7..b30ac241 100644 --- a/src/core/corenetwork.cpp +++ b/src/core/corenetwork.cpp @@ -564,7 +564,7 @@ void CoreNetwork::socketInitialized() return; } #else - emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort()); + emit socketInitialized(identity, localAddress(), localPort(), peerAddress(), peerPort(), _socketId); #endif socket.setSocketOption(QAbstractSocket::KeepAliveOption, true); -- 2.20.1