From: Florian Forster Date: Sun, 9 Jul 2006 08:16:49 +0000 (+0200) Subject: Merge branch 'collectd-3.9' X-Git-Tag: collectd-3.10.0~11 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=fdf203eed0a91818db735105a4cc85effd7971d9;hp=eba226f4ee94fc0067f08a32547bc77487a5e5c8;p=collectd.git Merge branch 'collectd-3.9' --- diff --git a/src/network.c b/src/network.c index 54f9bfa3..22e911a8 100644 --- a/src/network.c +++ b/src/network.c @@ -215,7 +215,11 @@ int network_create_socket (const char *node, const char *service) DBG ("node = %s, service = %s", node, service); if (operating_mode == MODE_LOCAL || operating_mode == MODE_LOG) + { + syslog (LOG_WARNING, "network_create_socket: There is no point opening a socket when you are in mode `%s'.", + operating_mode == MODE_LOCAL ? "Local" : "Log"); return (-1); + } socklist_tail = socklist_head; while ((socklist_tail != NULL) && (socklist_tail->next != NULL))