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

thijs at alioth.debian.org thijs at alioth.debian.org
Tue May 22 08:49:57 UTC 2007


Author: thijs
Date: 2007-05-22 08:49:56 +0000 (Tue, 22 May 2007)
New Revision: 317

Modified:
   trunk/caff/pgp-fixkey
   trunk/debian/changelog
Log:
cope with a sig that has an empty create date, treat that
as 0 and do not output a warning.


Modified: trunk/caff/pgp-fixkey
===================================================================
--- trunk/caff/pgp-fixkey	2007-04-24 09:18:50 UTC (rev 316)
+++ trunk/caff/pgp-fixkey	2007-05-22 08:49:56 UTC (rev 317)
@@ -265,7 +265,7 @@
 		} elsif (!defined $thiskey) {
 			next;
 		} elsif ($type eq 'sig' || $type eq 'rev') {
-			if (($keyid eq '0' x 16) || ($created == 0)) {
+			if (($keyid eq '0' x 16) || ($created eq "") || ($created == 0)) {
 				push @KEYIDS, $thiskey;
 				info("Key $thiskey needs cleaning.");
 				$thiskey = undef;

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2007-04-24 09:18:50 UTC (rev 316)
+++ trunk/debian/changelog	2007-05-22 08:49:56 UTC (rev 317)
@@ -2,12 +2,13 @@
 
   * caff:
     + Fix syntax error in example config variables (Closes: #413020).
-    + Fix perl warnings when calling pgp-fixkey with unknown keyid.
+    + Fix perl warnings when calling pgp-fixkey with unknown keyid or
+      with empty signature create date.
   * gpg-key2ps:
     + Add '-1' option to only display one column of slips, for extra
       wide keys (Closes: #399474).
 
- -- Thijs Kinkhorst <thijs at debian.org>  Tue, 24 Apr 2007 11:17:43 +0200
+ -- Thijs Kinkhorst <thijs at debian.org>  Tue, 22 May 2007 10:48:40 +0200
 
 signing-party (0.4.9-1) unstable; urgency=low
 




More information about the Pgp-tools-commit mailing list