diff options
author | 2015-10-07 13:20:48 +0000 | |
---|---|---|
committer | 2015-10-07 13:20:48 +0000 | |
commit | 217902d8c9c3cb5f49d53649c8409fac17864d12 (patch) | |
tree | cb96c49f4503acc515246c749264ced0d6b0ab49 /lib/libssl/src/ssl/d1_lib.c | |
parent | rn_inithead() offset argument is now specified in byte, missed in previous. (diff) | |
download | wireguard-openbsd-217902d8c9c3cb5f49d53649c8409fac17864d12.tar.xz wireguard-openbsd-217902d8c9c3cb5f49d53649c8409fac17864d12.zip |
include <sys/time.h> for gettimeofday(2)
Diffstat (limited to 'lib/libssl/src/ssl/d1_lib.c')
-rw-r--r-- | lib/libssl/src/ssl/d1_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/src/ssl/d1_lib.c b/lib/libssl/src/ssl/d1_lib.c index 708f3d72064..9ec9e090d21 100644 --- a/lib/libssl/src/ssl/d1_lib.c +++ b/lib/libssl/src/ssl/d1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_lib.c,v 1.31 2015/09/10 17:57:50 jsing Exp $ */ +/* $OpenBSD: d1_lib.c,v 1.32 2015/10/07 13:20:48 bcook Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -59,6 +59,7 @@ #include <sys/types.h> #include <sys/socket.h> +#include <sys/time.h> #include <netinet/in.h> |