X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fconnection.c;h=ac946abe12c53c3c914dfda6b0bbabd593dec339;hp=6229e79d83be40c9d77a5592576494aa5b8e9d82;hb=a08462bf845973016e061b8ca1233142d80416f6;hpb=9fed0ec34b9208611a7e96a595f23fa04e60a5c0 diff --git a/src/connection.c b/src/connection.c index 6229e79d..ac946abe 100644 --- a/src/connection.c +++ b/src/connection.c @@ -127,14 +127,3 @@ void dump_connections(void) { logger(LOG_DEBUG, "End of connections."); } - -bool read_connection_config(connection_t *c) { - char *fname; - bool x; - - xasprintf(&fname, "%s/hosts/%s", confbase, c->name); - x = read_config_file(c->config_tree, fname); - free(fname); - - return x; -}