Author: noodles
Date: 2003/02/16 00:21:48
Allow specifying a keyid on the command line for sixdegrees (Simon Huggins).
int main(int argc, char *argv[])
{
int main(int argc, char *argv[])
{
+ uint64_t keyid = 0x5B430367;
+
+ if (argc == 2) {
+ keyid = strtoll(argv[1], NULL, 16);
+ }
+
readconfig();
initdb();
inithash();
readconfig();
initdb();
inithash();
- sixdegrees(0x5B430367);
destroyhash();
cleanupdb();
cleanupconfig();
destroyhash();
cleanupdb();
cleanupconfig();