blob: 0ae2f3ed6be8adf9af79608d5cfadf68fcb64f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
diff -ur qca-gnupg-0.1-20060406/qca-gnupg.cpp qca-gnupg-0.1-20060406.new/qca-gnupg.cpp
--- qca-gnupg-0.1-20060406/qca-gnupg.cpp 2006-04-06 23:55:19.000000000 +0200
+++ qca-gnupg-0.1-20060406.new/qca-gnupg.cpp 2006-04-12 12:31:30.000000000 +0200
@@ -720,12 +724,14 @@
SecureMessageKey key;
PGPKey pub = publicKeyFromId(signerId, provider());
- if(!pub.isNull())
- {
- key.setPGPPublicKey(pub);
- signer = SecureMessageSignature(ir, v, key, ts);
- wasSigned = true;
+ if(pub.isNull()) {
+ MyPGPKeyContext *kc = new MyPGPKeyContext(provider());
+ kc->_props.keyId = signerId;
+ pub.change(kc);
}
+ key.setPGPPublicKey(pub);
+ signer = SecureMessageSignature(ir, v, key, ts);
+ wasSigned = true;
}
}
else
|