* Jonathan McDowell <noodles@earth.li>
*
* Copyright 2003 Project Purple
- *
- * $Id: splitkeys.c,v 1.1 2003/09/30 21:16:14 noodles Exp $
*/
#include <fcntl.h>
#include "charfuncs.h"
#include "keystructs.h"
+#include "log.h"
#include "mem.h"
+#include "onak-conf.h"
#include "parsekey.h"
int main(int argc, char *argv[])
fprintf(stderr,
"Couldn't parse %s as a number of keys!\n",
argv[1]);
- exit(1);
+ exit(EXIT_FAILURE);
}
}
+ readconfig(NULL);
+ initlogthing("splitkeys", config.logfile);
+
do {
result = read_openpgp_stream(stdin_getchar, NULL,
&packets, maxkeys);
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);
}
} while (packets != NULL);
+ cleanuplogthing();
+ cleanupconfig();
+
return 0;
}