diff options
Diffstat (limited to 'ftp_var.h')
| -rw-r--r-- | ftp_var.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftp_var.h b/ftp_var.h index 878ae4d..1e217ec 100644 --- a/ftp_var.h +++ b/ftp_var.h @@ -75,7 +75,7 @@ #include <histedit.h> #endif /* !SMALL */ -#ifndef NOSSL +#if !defined(NOSSL) || !NOSSL #ifdef __OpenBSD__ #include <tls.h> #else @@ -181,7 +181,7 @@ extern int unix_proxy; /* proxy is unix, can use binary for ascii */ extern char *ftpport; /* port number to use for ftp connections */ extern char *httpport; /* port number to use for http connections */ -#ifndef NOSSL +#if !defined(NOSSL) || !NOSSL extern char *httpsport; /* port number to use for https connections */ #endif /* !SMALL */ extern char *httpuseragent; /* user agent for http(s) connections */ @@ -234,7 +234,7 @@ extern FILE *ttyout; /* stdout or stderr, depending on interactive */ extern struct cmd cmdtab[]; -#ifndef NOSSL +#if !defined(NOSSL) || !NOSSL #include "tls_compat.h" extern tls_config_t tls_config; extern int tls_session_fd; |