summaryrefslogtreecommitdiff
path: root/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--server.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/server.cpp b/server.cpp
index 820c579..16c754b 100644
--- a/server.cpp
+++ b/server.cpp
@@ -115,6 +115,7 @@ void Server::connectionSuccessful() {
outputBuf.clear();
// Do we need to do any TLS junk?
+#ifdef USE_GNUTLS
if (useTls) {
state = CS_TLS_HANDSHAKE;
@@ -135,7 +136,9 @@ void Server::connectionSuccessful() {
gnutls_transport_set_int(tls, sock);
tlsActive = true;
- } else {
+ } else
+#endif
+ {
connectedEvent();
}
}