diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-15 19:39:47 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-15 19:39:47 +0000 |
commit | 1bd3f54f33dbf7ec32a6981ea0b2463d4db41982 (patch) | |
tree | 54f3941c9cb707ed3673ea5b25e73279e617d48c /lib/libssl/ssl | |
parent | 65dd691ad3f3764dfbfa28f71ec486f5c06fdd68 (diff) |
No longer make pqueue.h a public (and installed) header file. Replace its
inclusion in <ssl/dtls1.h> by the benign
`struct _pqueue; typedef struct _pqueue *pqueue;'.
Note that said dtls1.h should probably be considered a private header as well...
ok beck@
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r-- | lib/libssl/ssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index 8975572be86..d282268f0a0 100644 --- a/lib/libssl/ssl/Makefile +++ b/lib/libssl/ssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.42 2014/05/12 19:14:14 miod Exp $ +# $OpenBSD: Makefile,v 1.43 2014/05/15 19:39:46 miod Exp $ LIB= ssl @@ -23,7 +23,7 @@ SRCS=\ pqueue.c SRCS+= s3_cbc.c -HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h pqueue.h +HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h .PATH: ${LSSL_SRC} |