summaryrefslogtreecommitdiffstats
path: root/ssl/d1_lib.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-02-28 14:07:08 +0100
committerRichard Levitte <levitte@openssl.org>2017-02-28 15:32:01 +0100
commit14097b6a9263a40615a5c4cbf3fe808b1a14ffde (patch)
treef16f7ad3ab0be036d54a229ed8ede352210d529a /ssl/d1_lib.c
parente627a13cd58a54df830e0fc2853f3ea8862699f2 (diff)
Code health: Stop using timeb.h / ftime() (VMS only)
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2775)
Diffstat (limited to 'ssl/d1_lib.c')
-rw-r--r--ssl/d1_lib.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c
index 213fad5a8d..eb6a0f8295 100644
--- a/ssl/d1_lib.c
+++ b/ssl/d1_lib.c
@@ -13,9 +13,7 @@
#include <openssl/rand.h>
#include "ssl_locl.h"
-#if defined(OPENSSL_SYS_VMS)
-# include <sys/timeb.h>
-#elif defined(OPENSSL_SYS_VXWORKS)
+#if defined(OPENSSL_SYS_VXWORKS)
# include <sys/times.h>
#elif !defined(OPENSSL_SYS_WIN32)
# include <sys/time.h>
@@ -404,11 +402,6 @@ static void get_current_time(struct timeval *t)
# endif
t->tv_sec = (long)(now.ul / 10000000);
t->tv_usec = ((int)(now.ul % 10000000)) / 10;
-#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