summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2020-02-25 13:25:13 -0500
committerTomas Mraz <tmraz@fedoraproject.org>2020-03-06 18:25:13 +0100
commit433deaffce45d58efd6bb014672f7fb95062d458 (patch)
tree46a9c26d39abe72bd7f8b0681931655199d954b6 /util
parent5e828e2a5f95312190f388466826e1a285770e6a (diff)
Use .cnf for config files, not .conf
The default is openssl.cnf The project seems to prefer xxx.conf these days, but we should use the default convention. Rename all foo.conf (except for Configurations) to foo.cnf Fixes #11174 Reviewed-by: Paul Yang <kaishen.yy@antfin.com> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11176)
Diffstat (limited to 'util')
-rwxr-xr-xutil/fix-includes2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/fix-includes b/util/fix-includes
index c49163875b..c1435a7628 100755
--- a/util/fix-includes
+++ b/util/fix-includes
@@ -14,6 +14,6 @@ find -name ossl_typ.h -o \( \
-name '*.ec' -o \
-name 'README*' -o \
-name '*.pod' -o \
- -name '*.conf' \
+ -name '*.cnf' -o -name '*.conf' \
\) -exec sed -E -i \
-f util/fix-includes.sed {} \;