X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=gpgwww.c;h=cd3e0960f0fd3eda58508a1ac5b16caae7a03877;hb=c80e4acc7e15d50bb9398cfb77d4efd7ea2b6710;hp=570f1a8bc25bdfaef71a56a8d7a950169cf94a1a;hpb=1534798322db09b0f676ab5096ba5a3351b57c6c;p=onak.git diff --git a/gpgwww.c b/gpgwww.c index 570f1a8..cd3e096 100644 --- a/gpgwww.c +++ b/gpgwww.c @@ -4,8 +4,6 @@ * Jonathan McDowell * * Copyright 2001-2002 Project Purple. - * - * $Id: gpgwww.c,v 1.14 2004/05/26 18:53:14 noodles Exp $ */ #include @@ -94,7 +92,7 @@ int getkeyspath(uint64_t have, uint64_t want, int count) curkey = findinhash(keyinfoa->parent); while (curkey != NULL && curkey->keyid != 0) { if (curkey->keyid != fullwant && fetch_key( - curkey->keyid & 0xFFFFFFFF, + curkey->keyid, &publickey, false)) { flatten_publickey(publickey, &packets, @@ -114,7 +112,7 @@ int getkeyspath(uint64_t have, uint64_t want, int count) /* * 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);