Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 137132 | Differences between
and this patch

Collapse All | Expand All

(-)qca-gnupg-0.1-20060406/qca-gnupg.cpp (-5 / +7 lines)
Lines 720-731 Link Here
720
724
721
				SecureMessageKey key;
725
				SecureMessageKey key;
722
				PGPKey pub = publicKeyFromId(signerId, provider());
726
				PGPKey pub = publicKeyFromId(signerId, provider());
723
				if(!pub.isNull())
727
				if(pub.isNull()) {
724
				{
728
					MyPGPKeyContext *kc = new MyPGPKeyContext(provider());
725
					key.setPGPPublicKey(pub);
729
					kc->_props.keyId = signerId;
726
					signer = SecureMessageSignature(ir, v, key, ts);
730
					pub.change(kc);
727
					wasSigned = true;
728
				}
731
				}
732
				key.setPGPPublicKey(pub);
733
				signer = SecureMessageSignature(ir, v, key, ts);
734
				wasSigned = true;
729
			}
735
			}
730
		}
736
		}
731
		else
737
		else

Return to bug 137132