From: Dr. Stephen Henson Date: Wed, 2 Sep 2009 15:57:12 +0000 (+0000) Subject: PR: 2020 X-Git-Tag: OpenSSL_1_0_0-beta4~87 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=196dcf93bcf19a45b355112bf974c9a9de3c4205;p=oweals%2Fopenssl.git PR: 2020 Submitted by: Keith Beckman , Tomas Mraz Checked by: steve@openssl.org Fix improperly capitalized references to WWW::Curl::Easy. --- diff --git a/apps/tsget b/apps/tsget index ddae803fbf..52dc89a58b 100644 --- a/apps/tsget +++ b/apps/tsget @@ -1,13 +1,13 @@ #!/usr/bin/perl -w # Written by Zoltan Glozik . # Copyright (c) 2002 The OpenTSA Project. All rights reserved. -$::version = '$Id: tsget,v 1.1 2006/02/12 23:11:21 ulf Exp $'; +$::version = '$Id: tsget,v 1.1.2.1 2009/09/02 15:57:12 steve Exp $'; use strict; use IO::Handle; use Getopt::Std; use File::Basename; -use WWW::Curl::easy; +use WWW::Curl::Easy; use vars qw(%options); @@ -37,7 +37,7 @@ sub create_curl { my $url = shift; # Create Curl object. - my $curl = WWW::Curl::easy::new(); + my $curl = WWW::Curl::Easy::new(); # Error-handling related options. $curl->setopt(CURLOPT_VERBOSE, 1) if $options{d}; @@ -192,4 +192,4 @@ REQUEST: foreach (@ARGV) { STDERR->printflush(", $output written.\n") if $options{v}; } $curl->cleanup(); -WWW::Curl::easy::global_cleanup(); +WWW::Curl::Easy::global_cleanup();