Skip Menu |

This queue is for tickets about the Net-SMTP-TLS CPAN distribution.

Report information
The Basics
Id: 75378
Status: new
Priority: 0/
Queue: Net-SMTP-TLS

People
Owner: Nobody in particular
Requestors: selsky [...] gmail.com
Cc:
AdminCc:

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



Subject: Spelling error
There's a trivial typo in the mail function. "Could't" is misspelled. See attached patch.
Subject: spelling.patch
--- /usr/lib/perl5/vendor_perl/5.8.5/Net/SMTP/TLS.pm 2006-01-17 09:36:34.000000000 -0500 +++ /tmp/TLS.pm 2012-02-28 14:32:50.000000000 -0500 @@ -276,7 +276,7 @@ $me->_command("MAIL FROM: "._addr($from)); my ($num,$txt) = $me->_response(); if(not $num == 250){ - croak "Could't set FROM: $num $txt\n"; + croak "Couldn't set FROM: $num $txt\n"; } }