]> the.earth.li Git - onak.git/blobdiff - onak-conf.c
0.4.6 release
[onak.git] / onak-conf.c
index ccad3c5a78f800dde720e8562456fab44d119a19..763bdb203de12b60bd88b3818b75bd76c66672aa 100644 (file)
@@ -45,6 +45,7 @@ struct onak_config config = {
        NULL,                   /* logfile */
 
        false,                  /* use_keyd */
+       ".",                    /* sock_dir */
 
        /*
         * Options for directory backends.
@@ -200,6 +201,8 @@ void readconfig(const char *configfile) {
                } else if (!strncmp("use_keyd ", curline, 9)) {
                        config.use_keyd = parsebool(&curline[9],
                                                config.use_keyd);
+               } else if (!strncmp("sock_dir ", curline, 9)) {
+                       config.sock_dir = strdup(&curline[9]);
                } else if (!strncmp("check_sighash ", curline, 9)) {
                        config.check_sighash = parsebool(&curline[9],
                                                config.check_sighash);