Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Convert-ASN1 CPAN distribution.

Report information
The Basics
Id: 4236
Status: resolved
Priority: 0/
Queue: Convert-ASN1

People
Owner: Nobody in particular
Requestors: ville.skytta [...] iki.fi
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.18
Fixed in: (no value)



Subject: Fix for x509decode failure
"use strict" and the CVS $Id keyword in a HERE doc (examples/x509decode) don't play too well together, fix attached :)
--- examples/x509decode~ 2002-02-10 18:41:28.000000000 +0200 +++ examples/x509decode 2003-10-29 18:58:26.000000000 +0200 @@ -21,7 +21,7 @@ # parse ASN.1 desciptions my $asn = Convert::ASN1->new; -$asn->prepare(<<ASN1) or die "prepare: ", $asn->error; +$asn->prepare(<<'ASN1') or die "prepare: ", $asn->error; -- ASN.1 from RFC2459 and X.509(2001) -- Adapted for use with Convert::ASN1 -- $Id: x509decode,v 1.1 2002/02/10 16:41:28 gbarr Exp $