X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fodhcpd.c;h=71b803d01534935037d89c9f6da9dc91f58732d1;hp=58c4338b908296a2e279559e45593c4937486463;hb=7aa2594c5a127d92fa8f04328ac7b43e595bcaa7;hpb=750e457e3000187b85906814a2529ede24775325 diff --git a/src/odhcpd.c b/src/odhcpd.c index 58c4338..71b803d 100644 --- a/src/odhcpd.c +++ b/src/odhcpd.c @@ -187,8 +187,8 @@ ssize_t odhcpd_send(int socket, struct sockaddr_in6 *dest, ssize_t sent = sendmsg(socket, &msg, MSG_DONTWAIT); if (sent < 0) - syslog(LOG_NOTICE, "Failed to send to %s%%%s (%s)", - ipbuf, iface->ifname, strerror(errno)); + syslog(LOG_NOTICE, "Failed to send to %s%%%s (%m)", + ipbuf, iface->ifname); else syslog(LOG_DEBUG, "Sent %li bytes to %s%%%s", (long)sent, ipbuf, iface->ifname);