diff options
author | Jim Meyering <jim@meyering.net> | 2005-02-06 18:19:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-02-06 18:19:17 +0000 |
commit | 05132205af6fb6a0618024ddb6df8a53cdeeea6b (patch) | |
tree | 7f92a076794dc3d5038663deeb6272df1aa15be3 | |
parent | 64e8691b46bcbe52656fabccfd4cad56ecd6c62a (diff) | |
download | coreutils-05132205af6fb6a0618024ddb6df8a53cdeeea6b.tar.xz |
s/MD5 and SHA1 signatures/MD5 and SHA1 checksums/
-rwxr-xr-x | announce-gen | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/announce-gen b/announce-gen index 45ab1b29b..051159231 100755 --- a/announce-gen +++ b/announce-gen @@ -6,7 +6,7 @@ use Getopt::Long; use Digest::MD5; use Digest::SHA1; -(my $VERSION = '$Revision: 1.22 $ ') =~ tr/[0-9].//cd; +(my $VERSION = '$Revision: 1.23 $ ') =~ tr/[0-9].//cd; (my $ME = $0) =~ s|.*/||; my %valid_release_types = map {$_ => 1} qw (alpha beta major); @@ -134,7 +134,7 @@ sub print_signatures (@) { my (@file) = @_; - print "Here are the MD5 and SHA1 signatures:\n"; + print "Here are the MD5 and SHA1 checksums:\n"; print "\n"; foreach my $meth (qw (md5 sha1)) |