diff options
Diffstat (limited to 'apps/s_time.c')
-rw-r--r-- | apps/s_time.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/s_time.c b/apps/s_time.c index f68002a224..6890bc1be0 100644 --- a/apps/s_time.c +++ b/apps/s_time.c @@ -66,6 +66,10 @@ #include <stdlib.h> #include <string.h> +#include <openssl/opensslconf.h> + +#ifndef OPENSSL_NO_SOCK + #define USE_SOCKETS #include "apps.h" #include <openssl/x509.h> @@ -474,3 +478,4 @@ static SSL *doConnection(SSL *scon, const char *host, SSL_CTX *ctx) return serverCon; } +#endif /* OPENSSL_NO_SOCK */ |