diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-24 20:39:24 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-23 12:15:05 -0800 |
commit | 7ee7fd1f4c72b2ab6dba0413e63dd2e8b95b2112 (patch) | |
tree | 37117101f425a07eba9a3629d4f8ad5fc5f2e1fa | |
parent | e47aa9475027ed6a255daefec85561c6b15789bd (diff) |
Remove a couple Error() instances left behind by 09dbfcb0ad7b6c8
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>
-rw-r--r-- | os/access.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/access.c b/os/access.c index b7b19279f..f31626d96 100644 --- a/os/access.c +++ b/os/access.c @@ -528,7 +528,7 @@ DefineSelf (int fd) ifn.lifn_family = AF_UNSPEC; ifn.lifn_flags = 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))) { len = ifn.lifn_count * sizeof(struct lifreq); bufptr = malloc(len); @@ -558,7 +558,7 @@ DefineSelf (int fd) #endif 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; |