summary refs log tree commit diff stats
path: root/src/common/outbound.c
diff options
context:
space:
mode:
authorPatrick Okraku <patrick@okraku.com>2023-11-01 17:47:34 +0100
committerPatrick Griffis <tingping@tingping.se>2023-11-05 07:11:23 -0600
commit6420fd61174e6a8218bf2740605ceb9241eaf36f (patch)
treeb60fa4f9d6ea9297aee6749b75d0c6f54e9ad905 /src/common/outbound.c
parent50ca0d5b09db31a88f4798c87d9be71894edcfca (diff)
SSL compile fix
Diffstat (limited to 'src/common/outbound.c')
-rw-r--r--src/common/outbound.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c
index b9f88196..c82e23bd 100644
--- a/src/common/outbound.c
+++ b/src/common/outbound.c
@@ -3458,6 +3458,8 @@ cmd_server (struct session *sess, char *tbuf, char *word[], char *word_eol[])
 #ifdef USE_OPENSSL
 	int use_ssl = TRUE;
 	int use_ssl_noverify = FALSE;
+#else
+	int use_ssl = FALSE;
 #endif
 	int is_url = TRUE;
 	server *serv = sess->server;