diff options
author | jsing <> | 2015-09-11 14:52:17 +0000 |
---|---|---|
committer | jsing <> | 2015-09-11 14:52:17 +0000 |
commit | 0d2b8753e4416642fc3ae7d5871b1e4bcc856d35 (patch) | |
tree | a226e2884e4e229f6c42260f24b7d14b1710540a /src/lib/libssl/ssl/Makefile | |
parent | fef7a51ff03278663db1f3dd51faa3311e38c791 (diff) | |
download | openbsd-0d2b8753e4416642fc3ae7d5871b1e4bcc856d35.tar.gz openbsd-0d2b8753e4416642fc3ae7d5871b1e4bcc856d35.tar.bz2 openbsd-0d2b8753e4416642fc3ae7d5871b1e4bcc856d35.zip |
Put the *method* data structures and functions in the same place.
We can also now nuke ssl23_get_method() since it is the same as
tls1_get_method(). And the empty file can bite the dust.
ok bcook@ miod@
Diffstat (limited to '')
-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 5214debc1b..a9f1870c4e 100644 --- a/src/lib/libssl/ssl/Makefile +++ b/src/lib/libssl/ssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.54 2015/08/29 16:51:17 doug Exp $ | 1 | # $OpenBSD: Makefile,v 1.55 2015/09/11 14:52:17 jsing Exp $ |
2 | 2 | ||
3 | LIB= ssl | 3 | LIB= ssl |
4 | 4 | ||
@@ -17,7 +17,7 @@ LDADD+= -L${BSDOBJDIR}/lib/libcrypto/crypto -lcrypto | |||
17 | 17 | ||
18 | SRCS=\ | 18 | SRCS=\ |
19 | s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ | 19 | s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ |
20 | s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c s23_pkt.c \ | 20 | s23_srvr.c s23_clnt.c s23_lib.c s23_pkt.c \ |
21 | t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ | 21 | t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ |
22 | d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c d1_pkt.c \ | 22 | d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c d1_pkt.c \ |
23 | d1_both.c d1_enc.c d1_srtp.c \ | 23 | d1_both.c d1_enc.c d1_srtp.c \ |