X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=splitkeys.c;h=7fe66fa9e9557f4c856909a2723bb9a5ef48db8e;hb=1534798322db09b0f676ab5096ba5a3351b57c6c;hp=6cdf0a0abb1feb418400e5914cd0d014964833b6;hpb=4843efc642ddcfe524bb6ba37b01154e57489ff7;p=onak.git diff --git a/splitkeys.c b/splitkeys.c index 6cdf0a0..7fe66fa 100644 --- a/splitkeys.c +++ b/splitkeys.c @@ -5,7 +5,7 @@ * * Copyright 2003 Project Purple * - * $Id: splitkeys.c,v 1.2 2003/10/03 23:03:02 noodles Exp $ + * $Id: splitkeys.c,v 1.4 2003/10/15 21:15:21 noodles Exp $ */ #include @@ -42,7 +42,7 @@ int main(int argc, char *argv[]) } } - readconfig(); + readconfig(NULL); initlogthing("splitkeys", config.logfile); do { @@ -58,6 +58,9 @@ int main(int argc, char *argv[]) tmp->next = NULL; } } + if (tmp->next != NULL) { + list_end = NULL; + } snprintf(splitfile, 1023, "splitfile-%d.pgp", count); outfd = open(splitfile, O_WRONLY | O_CREAT, 0664);