From: Dr. David von Oheimb Date: Sat, 12 Jun 2021 11:47:38 +0000 (+0200) Subject: BIO: Make source file names in crypto/bio/ consistent X-Git-Tag: openssl-3.0.0-beta1~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d8897176d06eeb88738182dbd4ad08df2f045e9;p=thirdparty%2Fopenssl.git BIO: Make source file names in crypto/bio/ consistent Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15722) --- diff --git a/crypto/bio/b_addr.c b/crypto/bio/bio_addr.c similarity index 100% rename from crypto/bio/b_addr.c rename to crypto/bio/bio_addr.c diff --git a/crypto/bio/b_dump.c b/crypto/bio/bio_dump.c similarity index 100% rename from crypto/bio/b_dump.c rename to crypto/bio/bio_dump.c diff --git a/crypto/bio/b_print.c b/crypto/bio/bio_print.c similarity index 100% rename from crypto/bio/b_print.c rename to crypto/bio/bio_print.c diff --git a/crypto/bio/b_sock.c b/crypto/bio/bio_sock.c similarity index 100% rename from crypto/bio/b_sock.c rename to crypto/bio/bio_sock.c diff --git a/crypto/bio/b_sock2.c b/crypto/bio/bio_sock2.c similarity index 100% rename from crypto/bio/b_sock2.c rename to crypto/bio/bio_sock2.c diff --git a/crypto/bio/build.info b/crypto/bio/build.info index ba7e358c290..b203ed5e63f 100644 --- a/crypto/bio/build.info +++ b/crypto/bio/build.info @@ -3,9 +3,9 @@ LIBS=../../libcrypto # Base library SOURCE[../../libcrypto]=\ bio_lib.c bio_cb.c bio_err.c \ - b_print.c b_dump.c b_addr.c \ - b_sock.c b_sock2.c \ - bio_meth.c core_bio.c + bio_print.c bio_dump.c bio_addr.c \ + bio_sock.c bio_sock2.c \ + bio_meth.c ossl_core_bio.c # Source / sink implementations SOURCE[../../libcrypto]=\ diff --git a/crypto/bio/core_bio.c b/crypto/bio/ossl_core_bio.c similarity index 100% rename from crypto/bio/core_bio.c rename to crypto/bio/ossl_core_bio.c