From: Vincent Bernat Date: Sun, 16 Nov 2008 21:14:28 +0000 (+0100) Subject: Failure to connect to a socket can happen without requiring a warning X-Git-Tag: 0.2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f453ae2b65b63c89d764863962ac18cd1c567b13;p=thirdparty%2Flldpd.git Failure to connect to a socket can happen without requiring a warning --- diff --git a/src/priv.c b/src/priv.c index 31d7e691..d37ad977 100644 --- a/src/priv.c +++ b/src/priv.c @@ -413,7 +413,7 @@ asroot_snmp_socket() } if ((rc = connect(sock, (struct sockaddr *) addr, sizeof(struct sockaddr_un))) != 0) { - LLOG_WARN("[priv]: cannot connect to %s", addr->sun_path); + LLOG_INFO("[priv]: cannot connect to %s", addr->sun_path); close(sock); rc = -1; must_write(remote, &rc, sizeof(int));