diff options
author | jsing <> | 2017-01-26 05:51:54 +0000 |
---|---|---|
committer | jsing <> | 2017-01-26 05:51:54 +0000 |
commit | cd3d8b6f4c16680100acc89db5b955e2aa399daa (patch) | |
tree | 7144c37b9ce9871f9463b116e916019cd0ecc97f | |
parent | 9366f4ef0d67a19fe5eca3feedbc756a4a8966b2 (diff) | |
download | openbsd-cd3d8b6f4c16680100acc89db5b955e2aa399daa.tar.gz openbsd-cd3d8b6f4c16680100acc89db5b955e2aa399daa.tar.bz2 openbsd-cd3d8b6f4c16680100acc89db5b955e2aa399daa.zip |
Rename s3_{both,clnt,pkt_srvr}.c to have an ssl_ prefix since they are no
longer SSLv3 code.
ok beck@
-rw-r--r-- | src/lib/libssl/Makefile | 4 | ||||
-rw-r--r-- | src/lib/libssl/ssl_both.c (renamed from src/lib/libssl/s3_both.c) | 2 | ||||
-rw-r--r-- | src/lib/libssl/ssl_clnt.c (renamed from src/lib/libssl/s3_clnt.c) | 2 | ||||
-rw-r--r-- | src/lib/libssl/ssl_pkt.c (renamed from src/lib/libssl/s3_pkt.c) | 2 | ||||
-rw-r--r-- | src/lib/libssl/ssl_srvr.c (renamed from src/lib/libssl/s3_srvr.c) | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 7321c0d114..24606d1862 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.28 2017/01/26 05:31:25 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.29 2017/01/26 05:51:54 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -24,7 +24,7 @@ VERSION_SCRIPT= Symbols.map | |||
24 | SYMBOL_LIST= ${.CURDIR}/Symbols.list | 24 | SYMBOL_LIST= ${.CURDIR}/Symbols.list |
25 | 25 | ||
26 | SRCS= \ | 26 | SRCS= \ |
27 | s3_srvr.c s3_clnt.c s3_lib.c s3_pkt.c s3_both.c \ | 27 | ssl_srvr.c ssl_clnt.c s3_lib.c ssl_pkt.c ssl_both.c \ |
28 | t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ | 28 | t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ |
29 | d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c d1_pkt.c \ | 29 | d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c d1_pkt.c \ |
30 | d1_both.c d1_enc.c d1_srtp.c \ | 30 | d1_both.c d1_enc.c d1_srtp.c \ |
diff --git a/src/lib/libssl/s3_both.c b/src/lib/libssl/ssl_both.c index 41b35e5de6..e556e336ed 100644 --- a/src/lib/libssl/s3_both.c +++ b/src/lib/libssl/ssl_both.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_both.c,v 1.57 2017/01/26 05:31:25 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_both.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
diff --git a/src/lib/libssl/s3_clnt.c b/src/lib/libssl/ssl_clnt.c index 13915c2439..e7c78b139b 100644 --- a/src/lib/libssl/s3_clnt.c +++ b/src/lib/libssl/ssl_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_clnt.c,v 1.175 2017/01/26 05:31:25 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_clnt.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
diff --git a/src/lib/libssl/s3_pkt.c b/src/lib/libssl/ssl_pkt.c index 5dadc0654e..2ab264f33f 100644 --- a/src/lib/libssl/s3_pkt.c +++ b/src/lib/libssl/ssl_pkt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_pkt.c,v 1.70 2017/01/26 05:31:25 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_pkt.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
diff --git a/src/lib/libssl/s3_srvr.c b/src/lib/libssl/ssl_srvr.c index 28f0fc486a..dfc6ee67b6 100644 --- a/src/lib/libssl/s3_srvr.c +++ b/src/lib/libssl/ssl_srvr.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_srvr.c,v 1.154 2017/01/26 05:31:25 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_srvr.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |