diff options
author | Patrick Okraku <patrick@okraku.com> | 2023-11-01 17:47:34 +0100 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2023-11-05 07:11:23 -0600 |
commit | 6420fd61174e6a8218bf2740605ceb9241eaf36f (patch) | |
tree | b60fa4f9d6ea9297aee6749b75d0c6f54e9ad905 | |
parent | 50ca0d5b09db31a88f4798c87d9be71894edcfca (diff) |
SSL compile fix
-rw-r--r-- | src/common/outbound.c | 2 |
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; |