From 634d9fe9142f62b7b2e7647ef88d6606e54ab155 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Fri, 8 Aug 2014 10:46:39 +0200 Subject: [PATCH] Make failed to send a notice instead of a warning --- src/odhcpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/odhcpd.c b/src/odhcpd.c index 794bbfc..b8651dd 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -172,7 +172,7 @@ ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest, ssize_t sent = sendmsg(socket, &msg, MSG_DONTWAIT); if (sent < 0) - syslog(LOG_WARNING, "Failed to send to %s%%%s (%s)", + syslog(LOG_NOTICE, "Failed to send to %s%%%s (%s)", ipbuf, iface->ifname, strerror(errno)); else syslog(LOG_DEBUG, "Sent %li bytes to %s%%%s", -- 2.11.0