mk-ca-bundle.pl: add missing $

This commit is contained in:
Daniel Stenberg 2014-08-13 23:49:01 +02:00
parent 57b53918d1
commit 076c0ab683

View File

@ -211,7 +211,7 @@ sub sha1 {
my ($txt)=@_;
my $sha1 = `$openssl dgst -sha1 $txt | cut '-d ' -f2`;
chomp $sha1;
return sha1;
return $sha1;
}
sub oldsha1 {