r194 - trunk
Laurent Fousse
lfousse at costa.debian.org
Tue May 3 21:50:11 CEST 2005
Author: lfousse
Date: 2005-05-03 19:50:10 +0000 (Tue, 03 May 2005)
New Revision: 194
Modified:
trunk/ca-createsendout
Log:
Small bugfix
Modified: trunk/ca-createsendout
===================================================================
--- trunk/ca-createsendout 2005-05-03 19:50:06 UTC (rev 193)
+++ trunk/ca-createsendout 2005-05-03 19:50:10 UTC (rev 194)
@@ -119,7 +119,7 @@
print "UID $keyid/$uid->{'uid'} apparently has no email address, skipping.\n";
next;
};
- if ($uid->{'signed'} == scalar(@sign_keys)) {
+ if (defined($uid->{'signed'}) && ($uid->{'signed'} == scalar(@sign_keys))) {
print "UID $keyid/$uid->{'uid'} is already signed by your key(s), skipping.\n";
next;
};
More information about the Cabot-commit
mailing list