From 8dadddc66302064ba3bd51960a9e819df2351b30 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sun, 22 Jun 2008 14:18:51 +0200 Subject: [PATCH] src/rrdd.c: Try the default address if no other address is specified. --- src/rrdd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rrdd.c b/src/rrdd.c index 042b331..5d0bf8a 100644 --- a/src/rrdd.c +++ b/src/rrdd.c @@ -624,6 +624,9 @@ static void *listen_thread_main (void *args) /* {{{ */ open_listen_socket (config_listen_address_list[i]); } + if (config_listen_address_list_len < 1) + open_listen_socket (RRDD_SOCK_PATH); + if (listen_fds_num < 1) { RRDD_LOG (LOG_ERR, "listen_thread_main: No listen sockets " -- 2.11.0