diff options
author | miod <> | 2014-05-15 19:39:46 +0000 |
---|---|---|
committer | miod <> | 2014-05-15 19:39:46 +0000 |
commit | 8bfccde54e4165db2d95797d53f16cb1978af3da (patch) | |
tree | 90a6f068b9c6a7ff99b8af99834a159647dc08fb /src/lib/libssl/ssl | |
parent | fadbce26b3ee4c2f77bd19a8b33161719b0fe5ba (diff) | |
download | openbsd-8bfccde54e4165db2d95797d53f16cb1978af3da.tar.gz openbsd-8bfccde54e4165db2d95797d53f16cb1978af3da.tar.bz2 openbsd-8bfccde54e4165db2d95797d53f16cb1978af3da.zip |
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 'src/lib/libssl/ssl')
-rw-r--r-- | src/lib/libssl/ssl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl/Makefile b/src/lib/libssl/ssl/Makefile index 8975572be8..d282268f0a 100644 --- a/src/lib/libssl/ssl/Makefile +++ b/src/lib/libssl/ssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.42 2014/05/12 19:14:14 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.43 2014/05/15 19:39:46 miod Exp $ |
2 | 2 | ||
3 | LIB= ssl | 3 | LIB= ssl |
4 | 4 | ||
@@ -23,7 +23,7 @@ SRCS=\ | |||
23 | pqueue.c | 23 | pqueue.c |
24 | SRCS+= s3_cbc.c | 24 | SRCS+= s3_cbc.c |
25 | 25 | ||
26 | HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h pqueue.h | 26 | HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h |
27 | 27 | ||
28 | .PATH: ${LSSL_SRC} | 28 | .PATH: ${LSSL_SRC} |
29 | 29 | ||