summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2014-05-22 17:37:06 +0000
committerjsing <>2014-05-22 17:37:06 +0000
commit32a82f1d836ae0b4585960be533eecc2e39c1cb7 (patch)
tree5b8e9cc3ac60b5f781e37b5c9d7f19433c7cf396 /src/lib/libssl/ssl_locl.h
parent7c930e6398438c779870392401030d84b985b97f (diff)
downloadopenbsd-32a82f1d836ae0b4585960be533eecc2e39c1cb7.tar.gz
openbsd-32a82f1d836ae0b4585960be533eecc2e39c1cb7.tar.bz2
openbsd-32a82f1d836ae0b4585960be533eecc2e39c1cb7.zip
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@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index a0c3017836..012a38cc5c 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -164,8 +164,6 @@
164#include <openssl/err.h> 164#include <openssl/err.h>
165#include <openssl/ssl.h> 165#include <openssl/ssl.h>
166 166
167#include "pqueue.h"
168
169#define c2l(c,l) (l = ((unsigned long)(*((c)++))) , \ 167#define c2l(c,l) (l = ((unsigned long)(*((c)++))) , \
170 l|=(((unsigned long)(*((c)++)))<< 8), \ 168 l|=(((unsigned long)(*((c)++)))<< 8), \
171 l|=(((unsigned long)(*((c)++)))<<16), \ 169 l|=(((unsigned long)(*((c)++)))<<16), \