X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=splitkeys.c;h=2a91d2faeac75fdd2eeb480126d67ead9a68786f;hb=cc7c85b31ad99e8ec2b545c333cbcc890a97e9e7;hp=76aa4e4b9a439040c94e3e74bf54c7d667404352;hpb=33cfd5887ea8d05241b5b4749abbf7fdfadb51fe;p=onak.git diff --git a/splitkeys.c b/splitkeys.c index 76aa4e4..2a91d2f 100644 --- a/splitkeys.c +++ b/splitkeys.c @@ -25,9 +25,7 @@ #include "charfuncs.h" #include "keystructs.h" -#include "log.h" #include "mem.h" -#include "onak-conf.h" #include "openpgp.h" #include "parsekey.h" @@ -51,9 +49,6 @@ int main(int argc, char *argv[]) } } - readconfig(NULL); - initlogthing("splitkeys", config.logfile); - do { read_openpgp_stream(stdin_getchar, NULL, &packets, maxkeys); @@ -68,7 +63,7 @@ int main(int argc, char *argv[]) tmp->next = NULL; } } - if (tmp->next != NULL) { + if (tmp != NULL && tmp->next != NULL) { list_end = NULL; } @@ -83,8 +78,5 @@ int main(int argc, char *argv[]) } } while (packets != NULL); - cleanuplogthing(); - cleanupconfig(); - return 0; }