summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
1534798)
Fix gpgwww to not truncate keyids to 32bits; if the backends don't support
this then they should do it themselves.
curkey = findinhash(keyinfoa->parent);
while (curkey != NULL && curkey->keyid != 0) {
if (curkey->keyid != fullwant && fetch_key(
curkey = findinhash(keyinfoa->parent);
while (curkey != NULL && curkey->keyid != 0) {
if (curkey->keyid != fullwant && fetch_key(
- curkey->keyid & 0xFFFFFFFF,
&publickey, false)) {
flatten_publickey(publickey,
&packets,
&publickey, false)) {
flatten_publickey(publickey,
&packets,
/*
* Add the destination key to the list of returned keys.
*/
/*
* Add the destination key to the list of returned keys.
*/
- if (fetch_key(fullwant & 0xFFFFFFFF, &publickey, false)) {
+ if (fetch_key(fullwant, &publickey, false)) {
flatten_publickey(publickey,
&packets,
&list_end);
flatten_publickey(publickey,
&packets,
&list_end);