diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-26 05:51:55 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-01-26 05:51:55 +0000 |
commit | bf7793993eedd47309255dd253e8b8bc26afeb58 (patch) | |
tree | a37e0fce6ff69a7a9beed9e7d510825ac35bc4ac /lib/libssl | |
parent | f972655637430847a3002ab87a8644eb6117ee4d (diff) |
Rename s3_{both,clnt,pkt_srvr}.c to have an ssl_ prefix since they are no
longer SSLv3 code.
ok beck@
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/Makefile | 4 | ||||
-rw-r--r-- | lib/libssl/ssl_both.c (renamed from lib/libssl/s3_both.c) | 2 | ||||
-rw-r--r-- | lib/libssl/ssl_clnt.c (renamed from lib/libssl/s3_clnt.c) | 2 | ||||
-rw-r--r-- | lib/libssl/ssl_pkt.c (renamed from lib/libssl/s3_pkt.c) | 2 | ||||
-rw-r--r-- | lib/libssl/ssl_srvr.c (renamed from lib/libssl/s3_srvr.c) | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/lib/libssl/Makefile b/lib/libssl/Makefile index 7321c0d114a..24606d1862e 100644 --- a/lib/libssl/Makefile +++ b/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.28 2017/01/26 05:31:25 jsing Exp $ +# $OpenBSD: Makefile,v 1.29 2017/01/26 05:51:54 jsing Exp $ .include <bsd.own.mk> .ifndef NOMAN @@ -24,7 +24,7 @@ VERSION_SCRIPT= Symbols.map SYMBOL_LIST= ${.CURDIR}/Symbols.list SRCS= \ - s3_srvr.c s3_clnt.c s3_lib.c s3_pkt.c s3_both.c \ + ssl_srvr.c ssl_clnt.c s3_lib.c ssl_pkt.c ssl_both.c \ t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c d1_pkt.c \ d1_both.c d1_enc.c d1_srtp.c \ diff --git a/lib/libssl/s3_both.c b/lib/libssl/ssl_both.c index 41b35e5de6a..e556e336edf 100644 --- a/lib/libssl/s3_both.c +++ b/lib/libssl/ssl_both.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_both.c,v 1.57 2017/01/26 05:31:25 jsing Exp $ */ +/* $OpenBSD: ssl_both.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/lib/libssl/s3_clnt.c b/lib/libssl/ssl_clnt.c index 13915c2439d..e7c78b139bf 100644 --- a/lib/libssl/s3_clnt.c +++ b/lib/libssl/ssl_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_clnt.c,v 1.175 2017/01/26 05:31:25 jsing Exp $ */ +/* $OpenBSD: ssl_clnt.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/lib/libssl/s3_pkt.c b/lib/libssl/ssl_pkt.c index 5dadc0654e1..2ab264f33f6 100644 --- a/lib/libssl/s3_pkt.c +++ b/lib/libssl/ssl_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_pkt.c,v 1.70 2017/01/26 05:31:25 jsing Exp $ */ +/* $OpenBSD: ssl_pkt.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * diff --git a/lib/libssl/s3_srvr.c b/lib/libssl/ssl_srvr.c index 28f0fc486a0..dfc6ee67b6c 100644 --- a/lib/libssl/s3_srvr.c +++ b/lib/libssl/ssl_srvr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_srvr.c,v 1.154 2017/01/26 05:31:25 jsing Exp $ */ +/* $OpenBSD: ssl_srvr.c,v 1.1 2017/01/26 05:51:54 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * |