[SCM] Packaging of Net::Citadel in Debian branch, master, updated. debian/0.16-1-45-gd21e85b
Robert James Clay
jame at rocasa.us
Wed Jun 5 17:20:40 UTC 2013
The following commit has been merged in the master branch:
commit 607a8748e104e53ef7f9c0aa3a48279cedb2981a
Author: Robert James Clay <jame at rocasa.us>
Date: Sun Oct 21 15:54:27 2012 -0400
Correct syntax issues in new citadel_info function.
diff --git a/lib/Net/Citadel.pm b/lib/Net/Citadel.pm
index 72b539f..0427ed2 100644
--- a/lib/Net/Citadel.pm
+++ b/lib/Net/Citadel.pm
@@ -734,11 +734,11 @@ sub citadel_info {
print $s "INFO\n";
- if ((<$s>) !~ /1../) croak "Incorrect response from Citadel INFO command.";
+ if ((<$s>) !~ /1../) { croak "Incorrect response from Citadel INFO command." };
while ($line = <$s>) {
if ( $line !~ /^000/ ) {
- push @info $line;
+ push @info, $line;
}
else { last; }
}
--
Packaging of Net::Citadel in Debian
More information about the Pkg-perl-cvs-commits
mailing list