summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_both.c
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/d1_both.c
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/d1_both.c')
-rw-r--r--src/lib/libssl/d1_both.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/libssl/d1_both.c b/src/lib/libssl/d1_both.c
index 10b62cd410..0e32825695 100644
--- a/src/lib/libssl/d1_both.c
+++ b/src/lib/libssl/d1_both.c
@@ -123,6 +123,8 @@
123#include <openssl/evp.h> 123#include <openssl/evp.h>
124#include <openssl/x509.h> 124#include <openssl/x509.h>
125 125
126#include "pqueue.h"
127
126#define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8) 128#define RSMBLY_BITMASK_SIZE(msg_len) (((msg_len) + 7) / 8)
127 129
128#define RSMBLY_BITMASK_MARK(bitmask, start, end) { \ 130#define RSMBLY_BITMASK_MARK(bitmask, start, end) { \