X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/bf8716058fd535ccec14727f58cf1fcf032695a2..69deababa089b34c7d3dddaac04518fde1b9c2f8:/stripkey.c 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;