From c07bea4706cfb2e50753f5af01364a2dd815689e Mon Sep 17 00:00:00 2001 From: beck <> Date: Sun, 13 Apr 2014 22:11:45 +0000 Subject: Remove vms support stuff. ok deraadt@ --- src/lib/libssl/d1_lib.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/lib/libssl/d1_lib.c') diff --git a/src/lib/libssl/d1_lib.c b/src/lib/libssl/d1_lib.c index 7565ce7e36..ec0ff40265 100644 --- a/src/lib/libssl/d1_lib.c +++ b/src/lib/libssl/d1_lib.c @@ -66,10 +66,6 @@ #include #include "ssl_locl.h" -#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) -#include -#endif - static void get_current_time(struct timeval *t); const char dtls1_version_str[]="DTLSv1" OPENSSL_VERSION_PTEXT; int dtls1_listen(SSL *s, struct sockaddr *client); @@ -462,12 +458,6 @@ static void get_current_time(struct timeval *t) _ftime(&tb); t->tv_sec = (long)tb.time; t->tv_usec = (long)tb.millitm * 1000; -#elif defined(OPENSSL_SYS_VMS) - struct timeb tb; - ftime(&tb); - t->tv_sec = (long)tb.time; - t->tv_usec = (long)tb.millitm * 1000; -#else gettimeofday(t, NULL); #endif } -- cgit v1.2.3-55-g6feb