core: Fix build without SSL
authorManuel Nickschas <sputnick@quassel-irc.org>
Thu, 23 Aug 2018 00:08:50 +0000 (02:08 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Thu, 23 Aug 2018 00:08:50 +0000 (02:08 +0200)
Seems like an #ifdef was overlooked.

src/core/corenetwork.cpp

index d7d259b..b30ac24 100644 (file)
@@ -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);