aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-08-13 23:49:01 +0200
committerDaniel Stenberg <daniel@haxx.se>2014-08-13 23:49:01 +0200
commit076c0ab68368d267713a0079b9509253715201da (patch)
treefdc3fa260219541361b61d2e2d44d1e34465aa33 /lib
parent57b53918d1139bff572d84e5e0a71ae4c514d3c2 (diff)
mk-ca-bundle.pl: add missing $
Diffstat (limited to 'lib')
-rwxr-xr-xlib/mk-ca-bundle.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mk-ca-bundle.pl b/lib/mk-ca-bundle.pl
index 9c86cc208..0485bafd6 100755
--- a/lib/mk-ca-bundle.pl
+++ b/lib/mk-ca-bundle.pl
@@ -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 {