]> git.meshlink.io Git - meshlink/commitdiff
Disabling calls to read_config_options. Makes no sense in libmeshlink reading command...
authorSaverio Proto <zioproto@gmail.com>
Mon, 7 Apr 2014 16:25:19 +0000 (18:25 +0200)
committerSaverio Proto <zioproto@gmail.com>
Mon, 7 Apr 2014 16:25:19 +0000 (18:25 +0200)
src/conf.c

index e0d8e922fb9248eee0a11cafe0e0f4b412a9a0d8..95c07477da9c8575825d34718febb30c3b333f15 100644 (file)
@@ -371,7 +371,7 @@ bool read_server_config(void) {
        char *fname;
        bool x;
 
-       read_config_options(config_tree, NULL);
+       //read_config_options(config_tree, NULL);
 
        xasprintf(&fname, "%s" SLASH "tinc.conf", confbase);
        errno = 0;
@@ -412,7 +412,7 @@ bool read_host_config(splay_tree_t *config_tree, const char *name) {
        char *fname;
        bool x;
 
-       read_config_options(config_tree, name);
+       //read_config_options(config_tree, name);
 
        xasprintf(&fname, "%s" SLASH "hosts" SLASH "%s", confbase, name);
        x = read_config_file(config_tree, fname);