diff options
author | Rich Salz <rsalz@akamai.com> | 2020-01-07 21:50:20 +0100 |
---|---|---|
committer | Rich Salz <rsalz@akamai.com> | 2020-01-07 21:53:15 +0100 |
commit | 339638b586e77c189e8294f931b99b03d1f08dbd (patch) | |
tree | f3731fd5a71dad5fcbfde3680624e5281e56c361 /fuzz | |
parent | Refactor -engine documentation (diff) | |
download | openssl-339638b586e77c189e8294f931b99b03d1f08dbd.tar.xz openssl-339638b586e77c189e8294f931b99b03d1f08dbd.zip |
Make generated copyright year be "now"
Always use the current year in generating output files, rather than
trying to base is on the modtime of the script or input, as that can
vary depending on the ability of the local OS to keep those accurate.
Fixes #10744
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10776)
Diffstat (limited to 'fuzz')
-rwxr-xr-x | fuzz/mkfuzzoids.pl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fuzz/mkfuzzoids.pl b/fuzz/mkfuzzoids.pl index 89cf7bb583..050b5b7047 100755 --- a/fuzz/mkfuzzoids.pl +++ b/fuzz/mkfuzzoids.pl @@ -8,10 +8,8 @@ my $obj_dat_h = $ARGV[0]; -# Output year depends on the date on the input file and the script. -my $YEAR = [localtime([stat($0)]->[9])]->[5] + 1900; -my $iYEAR = [localtime([stat($obj_dat_h)]->[9])]->[5] + 1900; -$YEAR = $iYEAR if $iYEAR > $YEAR; +# The year the output file is generated. +my $YEAR = [localtime()]->[5] + 1900; open IN, '<', $obj_dat_h || die "Couldn't open $obj_dat_h : $!\n"; |