cscvs to tla changeset 62
authorJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:47:30 +0000 (23:47 +0000)
committerJonathan McDowell <noodles@earth.li>
Mon, 31 May 2004 23:47:30 +0000 (23:47 +0000)
Author: noodles
Date: 2003/02/16 00:21:48
Allow specifying a keyid on the command line for sixdegrees (Simon Huggins).

sixdegrees.c

index 1afbf7764337b3af7173af8e9fcb2e1dd23565d1..128e8f323ba120ed34fc9e90867388b42e57e03d 100644 (file)
@@ -99,10 +99,16 @@ void sixdegrees(uint64_t keyid)
 
 int main(int argc, char *argv[])
 {
+       uint64_t keyid = 0x5B430367;
+
+       if (argc == 2) {
+               keyid = strtoll(argv[1], NULL, 16);
+       }
+
        readconfig();
        initdb();
        inithash();
-       sixdegrees(0x5B430367);
+       sixdegrees(keyid);
        destroyhash();
        cleanupdb();
        cleanupconfig();