diff options
author | jsing <> | 2014-05-22 17:37:06 +0000 |
---|---|---|
committer | jsing <> | 2014-05-22 17:37:06 +0000 |
commit | 32a82f1d836ae0b4585960be533eecc2e39c1cb7 (patch) | |
tree | 5b8e9cc3ac60b5f781e37b5c9d7f19433c7cf396 /src/lib/libssl/d1_pkt.c | |
parent | 7c930e6398438c779870392401030d84b985b97f (diff) | |
download | openbsd-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_pkt.c')
-rw-r--r-- | src/lib/libssl/d1_pkt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/libssl/d1_pkt.c b/src/lib/libssl/d1_pkt.c index df18e5bae3..a9ccc6d349 100644 --- a/src/lib/libssl/d1_pkt.c +++ b/src/lib/libssl/d1_pkt.c | |||
@@ -121,6 +121,8 @@ | |||
121 | #include <openssl/buffer.h> | 121 | #include <openssl/buffer.h> |
122 | #include <openssl/rand.h> | 122 | #include <openssl/rand.h> |
123 | 123 | ||
124 | #include "pqueue.h" | ||
125 | |||
124 | /* mod 128 saturating subtract of two 64-bit values in big-endian order */ | 126 | /* mod 128 saturating subtract of two 64-bit values in big-endian order */ |
125 | static int | 127 | static int |
126 | satsub64be(const unsigned char *v1, const unsigned char *v2) | 128 | satsub64be(const unsigned char *v1, const unsigned char *v2) |