X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=stripkey.c;h=e0fb5e38a56957699c70b7630ca1e7291b2e2a48;hb=refs%2Ftags%2Fonak-0.5.0;hp=13aeb1d23b3d22014f855109db34495805edb189;hpb=bf8716058fd535ccec14727f58cf1fcf032695a2;p=onak.git diff --git a/stripkey.c b/stripkey.c index 13aeb1d..e0fb5e3 100644 --- a/stripkey.c +++ b/stripkey.c @@ -63,7 +63,8 @@ int main(int argc, char** argv) { cleankeys( keys ); /* Iterate over the keys... */ for( key = keys; key; key = key->next ) { - uint64_t keyid = get_keyid( key ); + uint64_t keyid; + get_keyid( key, &keyid ); for( uid = key->uids; uid; uid = uid->next ) { REPEATTHISUID: for( sig = uid->sigs, prevsig = NULL;