1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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 ($txt)=@_;
my $sha1 = `$openssl dgst -sha1 $txt | cut '-d ' -f2`; my $sha1 = `$openssl dgst -sha1 $txt | cut '-d ' -f2`;
chomp $sha1; chomp $sha1;
return sha1; return $sha1;
} }
sub oldsha1 { sub oldsha1 {