From 46859c4ae3ce9df5df3916ad04aecab1c483219b Mon Sep 17 00:00:00 2001 From: jsing Date: Thu, 22 May 2014 17:37:06 +0000 Subject: Stop pulling pqueue.h into ssl_locl.h since only a small part of libssl actually needs it. Instead, just include it in the files where it is actually necessary. Also remove standard includes from pqueue.h so that they are not available as a side effect. Just add the two includes that are needed to pqueue.c. ok miod@ --- lib/libssl/src/ssl/d1_lib.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/libssl/src/ssl/d1_lib.c') diff --git a/lib/libssl/src/ssl/d1_lib.c b/lib/libssl/src/ssl/d1_lib.c index b6b765634da..a2500ee0bf9 100644 --- a/lib/libssl/src/ssl/d1_lib.c +++ b/lib/libssl/src/ssl/d1_lib.c @@ -64,6 +64,8 @@ #include #include + +#include "pqueue.h" #include "ssl_locl.h" const char dtls1_version_str[]="DTLSv1" OPENSSL_VERSION_PTEXT; -- cgit v1.2.3-59-g8ed1b