I came up against some of the same problems as this poster to openssl-user:
http://www.mail-archive.com/openssl-us...@openssl.org/msg56755.html This diff covers the improperly-capitalized references to WWW::Curl::Easy and a problem with some TSAs returning a non-standard mimetype for their response. Cheers! Keith Beckman
# Patch against apps/tsget from: # http://openssl.org/source/openssl-1.0.0-beta3.tar.gz # # CHANGES # # Some TSAs return the mime-type application/timestamp-response rather # than application/timestamp-reply. This permits the spurious mimetype. # # The module used is WWW::Curl::Easy, but ::easy is referenced, possibly # because the script was developed on a case-insensitive system. cf. # http://www.mail-archive.com/openssl-us...@openssl.org/msg56755.html # 40c40 < my $curl = WWW::Curl::easy::new(); --- > my $curl = WWW::Curl::Easy::new(); 105c105 < if (lc($ct) ne "application/timestamp-reply") { --- > if (lc($ct) ne "application/timestamp-reply" && lc($ct) ne "application/timestamp-response") { 195c195 < WWW::Curl::easy::global_cleanup(); --- > WWW::Curl::Easy::global_cleanup();