X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=splitkeys.c;h=1f0e9d68df929a1a1179a309c146df292d00e948;hb=6d60149434eed130c201d4d670ce7b3be5c2866b;hp=76aa4e4b9a439040c94e3e74bf54c7d667404352;hpb=33cfd5887ea8d05241b5b4749abbf7fdfadb51fe;p=onak.git diff --git a/splitkeys.c b/splitkeys.c index 76aa4e4..1f0e9d6 100644 --- a/splitkeys.c +++ b/splitkeys.c @@ -13,8 +13,7 @@ * 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. + * this program. If not, see . */ #include @@ -25,9 +24,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 +48,6 @@ int main(int argc, char *argv[]) } } - readconfig(NULL); - initlogthing("splitkeys", config.logfile); - do { read_openpgp_stream(stdin_getchar, NULL, &packets, maxkeys); @@ -68,7 +62,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 +77,5 @@ int main(int argc, char *argv[]) } } while (packets != NULL); - cleanuplogthing(); - cleanupconfig(); - return 0; }