Remove a couple Error() instances left behind by 09dbfcb0ad

Two instances found in the SIOCGIFCONF code for listing network interfaces.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Alan Coopersmith 2011-10-24 20:39:24 -07:00
parent e47aa94750
commit 7ee7fd1f4c

View File

@ -528,7 +528,7 @@ DefineSelf (int fd)
ifn.lifn_family = AF_UNSPEC; ifn.lifn_family = AF_UNSPEC;
ifn.lifn_flags = 0; ifn.lifn_flags = 0;
if (ioctl (fd, SIOCGLIFNUM, (char *) &ifn) < 0) if (ioctl (fd, SIOCGLIFNUM, (char *) &ifn) < 0)
Error ("Getting interface count"); ErrorF ("Getting interface count: %s\n", strerror(errno));
if (len < (ifn.lifn_count * sizeof(struct lifreq))) { if (len < (ifn.lifn_count * sizeof(struct lifreq))) {
len = ifn.lifn_count * sizeof(struct lifreq); len = ifn.lifn_count * sizeof(struct lifreq);
bufptr = malloc(len); bufptr = malloc(len);
@ -558,7 +558,7 @@ DefineSelf (int fd)
#endif #endif
if (ifioctl (fd, IFC_IOCTL_REQ, (pointer) &ifc) < 0) if (ifioctl (fd, IFC_IOCTL_REQ, (pointer) &ifc) < 0)
Error ("Getting interface configuration (4)"); ErrorF ("Getting interface configuration (4): %s\n", strerror(errno));
cplim = (char *) IFC_IFC_REQ + IFC_IFC_LEN; cplim = (char *) IFC_IFC_REQ + IFC_IFC_LEN;