From: Manuel Nickschas Date: Thu, 23 Aug 2018 00:08:50 +0000 (+0200) Subject: core: Fix build without SSL X-Git-Tag: 0.13-rc2~84 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=4cf9c160f318a71400b032ea6d3031b9e6628a56 core: Fix build without SSL Seems like an #ifdef was overlooked. --- 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);