summaryrefslogtreecommitdiffstats
path: root/util/fips-checksums.sh
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-05-20 13:48:15 +1000
committerPauli <pauli@openssl.org>2021-05-25 19:36:27 +1000
commit969fdad7507c58438947c17750cc019339a03d25 (patch)
treeec32bd205e3c5c1293a84c1964dc222510fa5071 /util/fips-checksums.sh
parentf0fa37a4a7f43c68770ccb0b3ce286cfe6e3254a (diff)
checksum: include header files in the checksumming output
Fixes #15133 Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15365)
Diffstat (limited to 'util/fips-checksums.sh')
-rwxr-xr-xutil/fips-checksums.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/fips-checksums.sh b/util/fips-checksums.sh
index 36e59bb708..aff8d0ccce 100755
--- a/util/fips-checksums.sh
+++ b/util/fips-checksums.sh
@@ -8,7 +8,7 @@ for f in "$@"; do
# the '*stdin' marker to the filename preceded by a space. See the
# sha1sum manual for a specification of the format.
case "$f" in
- *.c | *.h )
+ *.c | *.c.in | *.h | *.h.in | *.inc)
cat "$f" \
| $HERE/lang-compress.pl 'C' \
| unifdef -DFIPS_MODULE=1 \