X-Git-Url: http://the.earth.li/gitweb/?p=onak.git;a=blobdiff_plain;f=splitkeys.c;h=1f0e9d68df929a1a1179a309c146df292d00e948;hp=4f6365596a2c3c1a692f3155adf5c61c5261f0da;hb=743957a08f068529d3add3e8485678b4e5034195;hpb=98ee16938c903e9d1d5bb9b720f9cfef1fa2ec0a diff --git a/splitkeys.c b/splitkeys.c index 4f63655..1f0e9d6 100644 --- a/splitkeys.c +++ b/splitkeys.c @@ -1,11 +1,19 @@ /* * splitkeys.c - Split a keyring into smaller chunks. * - * Jonathan McDowell - * - * Copyright 2003 Project Purple + * Copyright 2003 Jonathan McDowell * - * $Id: splitkeys.c,v 1.3 2003/10/03 23:34:06 noodles Exp $ + * 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, see . */ #include @@ -16,9 +24,8 @@ #include "charfuncs.h" #include "keystructs.h" -#include "log.h" #include "mem.h" -#include "onak-conf.h" +#include "openpgp.h" #include "parsekey.h" int main(int argc, char *argv[]) @@ -26,7 +33,6 @@ int main(int argc, char *argv[]) struct openpgp_packet_list *packets = NULL; struct openpgp_packet_list *list_end = NULL; struct openpgp_packet_list *tmp = NULL; - int result = 0; int maxkeys = 10000; int outfd = -1; int count = 0; @@ -42,11 +48,8 @@ int main(int argc, char *argv[]) } } - readconfig(); - initlogthing("splitkeys", config.logfile); - do { - result = read_openpgp_stream(stdin_getchar, NULL, + read_openpgp_stream(stdin_getchar, NULL, &packets, maxkeys); if (packets != NULL) { list_end = packets; @@ -54,11 +57,12 @@ int main(int argc, char *argv[]) tmp = list_end; list_end = list_end->next; if (list_end->next == NULL && - list_end->packet->tag == 6) { + list_end->packet->tag == + OPENPGP_PACKET_PUBLICKEY) { tmp->next = NULL; } } - if (tmp->next != NULL) { + if (tmp != NULL && tmp->next != NULL) { list_end = NULL; } @@ -73,8 +77,5 @@ int main(int argc, char *argv[]) } } while (packets != NULL); - cleanuplogthing(); - cleanupconfig(); - return 0; }