From: Roy Marples Date: Tue, 19 Feb 2013 16:59:58 +0000 (+0000) Subject: Change arp errno to match what we use in dhcpcd. X-Git-Tag: v5.99.6~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49195fa88b7789272f000b1e731f96871003182b;p=thirdparty%2Fdhcpcd.git Change arp errno to match what we use in dhcpcd. --- diff --git a/arp.c b/arp.c index d3b09fa3..cca586c9 100644 --- a/arp.c +++ b/arp.c @@ -82,7 +82,7 @@ arp_send(const struct interface *ifp, int op, in_addr_t sip, in_addr_t tip) return ipv4_sendrawpacket(ifp, ETHERTYPE_ARP, arp_buffer, len); eexit: - errno = ENOSPC; + errno = ENOBUFS; return -1; }