Add -c option to maxpath / sixdegrees to specify config file
authorJonathan McDowell <noodles@earth.li>
Mon, 30 Sep 2013 11:22:59 +0000 (12:22 +0100)
committerJonathan McDowell <noodles@earth.li>
Mon, 30 Sep 2013 11:22:59 +0000 (12:22 +0100)
maxpath + sixdegrees weren't allowing a config file to be specified
in the same fashion as onak. Add the -c option so they do so, which
helps when using these tools in a non-system install setup.

maxpath.c
sixdegrees.c

index 81a2b22b8d2f4fbfa126dcc7751ee08e4f645cc6..25264ced5855c0a21dcf45c6eae7782144d5dab4 100644 (file)
--- a/maxpath.c
+++ b/maxpath.c
@@ -17,6 +17,7 @@
  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#include <getopt.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -83,7 +84,18 @@ void findmaxpath(unsigned long max)
 
 int main(int argc, char *argv[])
 {
 
 int main(int argc, char *argv[])
 {
-       readconfig(NULL);
+       int optchar;
+       char *configfile = NULL;
+
+       while ((optchar = getopt(argc, argv, "c:")) != -1 ) {
+               switch (optchar) {
+               case 'c':
+                       configfile = strdup(optarg);
+                       break;
+               }
+       }
+
+       readconfig(configfile);
        initlogthing("maxpath", config.logfile);
        config.dbbackend->initdb(true);
        inithash();
        initlogthing("maxpath", config.logfile);
        config.dbbackend->initdb(true);
        inithash();
index e6a35947b00a3030c905a54ea36ef4c7617ab28d..738f6264b6c1c17c8f1e959ceb27f4a805147181 100644 (file)
  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
  * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#include <getopt.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 
 #include "hash.h"
 #include "keydb.h"
 
 #include "hash.h"
 #include "keydb.h"
@@ -132,13 +134,23 @@ void sixdegrees(uint64_t keyid)
 
 int main(int argc, char *argv[])
 {
 
 int main(int argc, char *argv[])
 {
+       int optchar;
+       char *configfile = NULL;
        uint64_t keyid = 0x2DA8B985;
 
        uint64_t keyid = 0x2DA8B985;
 
-       if (argc == 2) {
-               keyid = strtoll(argv[1], NULL, 16);
+       while ((optchar = getopt(argc, argv, "c:")) != -1 ) {
+               switch (optchar) {
+               case 'c':
+                       configfile = strdup(optarg);
+                       break;
+               }
+       }
+
+       if (optind < argc) {
+               keyid = strtoll(argv[optind], NULL, 16);
        }
 
        }
 
-       readconfig(NULL);
+       readconfig(configfile);
        initlogthing("sixdegrees", config.logfile);
        config.dbbackend->initdb(true);
        inithash();
        initlogthing("sixdegrees", config.logfile);
        config.dbbackend->initdb(true);
        inithash();