caroot: add @generated tags to extracted .pem

As is the current trend; while these files are manually curated, they are
still generated.  If they end up in a review, it would be helpful to also
take the hint and hide them.
This commit is contained in:
Kyle Evans 2019-10-02 01:27:50 +00:00
parent bbb8014f09
commit a9fe8c68aa

@ -39,6 +39,7 @@ use MIME::Base64;
use Getopt::Long; use Getopt::Long;
my $VERSION = '$FreeBSD$'; my $VERSION = '$FreeBSD$';
my $generated = '@' . 'generated';
my $inputfh = *STDIN; my $inputfh = *STDIN;
my $debug = 0; my $debug = 0;
my $infile; my $infile;
@ -78,6 +79,8 @@ sub print_header($$)
## Extracted from nss ## Extracted from nss
## with $VERSION ## with $VERSION
## ##
## $generated
##
EOFH EOFH
} else { } else {
print $dstfile <<EOH; print $dstfile <<EOH;
@ -91,6 +94,8 @@ EOFH
## Extracted from nss ## Extracted from nss
## with $VERSION ## with $VERSION
## ##
## $generated
##
EOH EOH
} }
} }