X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/abd73876aa3545e3bfcffd44680538a3c10bb84c..a241edc87bed49d6bc5dc3c4c99786a921ae7c8a:/stripkey.c diff --git a/stripkey.c b/stripkey.c index 12d8791..414c163 100644 --- a/stripkey.c +++ b/stripkey.c @@ -1,3 +1,22 @@ +/* + * stripkey.c - Strip a key of all signatures except self-sigs. + * + * Copyright 2004 Daniel Silverstone + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 51 + * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + #include #include #include @@ -28,7 +47,6 @@ int main(int argc, char** argv) { struct openpgp_signedpacket_list *uid = NULL; struct openpgp_packet_list *sig = NULL; struct openpgp_packet_list *prevsig = NULL; - int result = 0; uint64_t my_key = 0; if( argc > 1 ) @@ -38,11 +56,11 @@ int main(int argc, char** argv) { /* strip each key of everything but its pubkey component, uids and * selfsigs and revsigs on those selfsigs */ - result = read_openpgp_stream( stdin_getchar, NULL, &packets, 0 ); - result = parse_keys( packets, &keys ); + read_openpgp_stream( stdin_getchar, NULL, &packets, 0 ); + parse_keys( packets, &keys ); free_packet_list(packets); packets = NULL; - result = cleankeys( keys ); + cleankeys( keys ); /* Iterate over the keys... */ for( key = keys; key; key = key->next ) { uint64_t keyid = get_keyid( key );