[Pgp-tools-commit] r689 - in trunk: caff debian

Guilhem Moulin guilhem-guest at moszumanska.debian.org
Thu Aug 14 23:52:14 UTC 2014


Author: guilhem-guest
Date: 2014-08-14 23:52:14 +0000 (Thu, 14 Aug 2014)
New Revision: 689

Modified:
   trunk/caff/pgp-clean
   trunk/caff/pgp-fixkey
   trunk/debian/changelog
Log:
Fix regression introduced in r518.

When removing the 'defined' in 'defined @array'.  Closes: #756459.

Modified: trunk/caff/pgp-clean
===================================================================
--- trunk/caff/pgp-clean	2014-07-16 12:57:18 UTC (rev 688)
+++ trunk/caff/pgp-clean	2014-08-14 23:52:14 UTC (rev 689)
@@ -201,7 +201,7 @@
 			}
 		}
 
-		next unless @$readyr; # Wait some more.
+		next unless defined $readyr and @$readyr; # Wait some more.
 
 		for my $rfd (@$readyr) {
 			$readwrote_stuff_this_time = 1;

Modified: trunk/caff/pgp-fixkey
===================================================================
--- trunk/caff/pgp-fixkey	2014-07-16 12:57:18 UTC (rev 688)
+++ trunk/caff/pgp-fixkey	2014-08-14 23:52:14 UTC (rev 689)
@@ -187,7 +187,7 @@
 			}
 		}
 
-		next unless @$readyr; # Wait some more.
+		next unless defined $readyr and @$readyr; # Wait some more.
 
 		for my $rfd (@$readyr) {
 			$readwrote_stuff_this_time = 1;

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2014-07-16 12:57:18 UTC (rev 688)
+++ trunk/debian/changelog	2014-08-14 23:52:14 UTC (rev 689)
@@ -3,6 +3,9 @@
   [ Guilhem Moulin ]
   * debian.copyright:
     + Upgragrade to the new, machine-readable, format.
+  * caff:
+    + Fix regression introduced in r518 when removing the 'defined' in
+      'defined @array'. (Closes: #756459)
 
  -- Guilhem Moulin <guilhem at guilhem.org>  Wed, 16 Jul 2014 00:07:24 +0200
 




More information about the Pgp-tools-commit mailing list