Mercurial > emacs
changeset 52591:03137a8dc8cb
(Fnetwork_interface_info): Use
HAVE_STRUCT_IFREQ... macros.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 23 Sep 2003 12:40:39 +0000 |
parents | ae8115a00e62 |
children | dc1ff4683e5c |
files | src/process.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Tue Sep 23 12:39:44 2003 +0000 +++ b/src/process.c Tue Sep 23 12:40:39 2003 +0000 @@ -3483,7 +3483,7 @@ return Qnil; elt = Qnil; -#if defined(SIOCGIFFLAGS) && defined(ifr_flags) +#if defined(SIOCGIFFLAGS) && defined(HAVE_STRUCT_IFREQ_IFR_FLAGS) if (ioctl (s, SIOCGIFFLAGS, &rq) == 0) { int flags = rq.ifr_flags; @@ -3511,7 +3511,7 @@ res = Fcons (elt, res); elt = Qnil; -#if defined(SIOCGIFHWADDR) && defined(ifr_hwaddr) +#if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_HWADDR) if (ioctl (s, SIOCGIFHWADDR, &rq) == 0) { Lisp_Object hwaddr = Fmake_vector (make_number (6), Qnil); @@ -3537,7 +3537,7 @@ res = Fcons (elt, res); elt = Qnil; -#if defined(SIOCGIFBRDADDR) && defined(ifr_broadaddr) +#if defined(SIOCGIFBRDADDR) && defined(HAVE_STRUCT_IFREQ_IFR_BROADADDR) if (ioctl (s, SIOCGIFBRDADDR, &rq) == 0) { any++; @@ -3547,7 +3547,7 @@ res = Fcons (elt, res); elt = Qnil; -#if defined(SIOCGIFADDR) && defined(ifr_addr) +#if defined(SIOCGIFADDR) && defined(HAVE_STRUCT_IFREQ_IFR_ADDR) if (ioctl (s, SIOCGIFADDR, &rq) == 0) { any++;