summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/if_nametoindex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/net/if_nametoindex.c')
-rw-r--r--src/lib/libc/net/if_nametoindex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/net/if_nametoindex.c b/src/lib/libc/net/if_nametoindex.c
index 2b9810d314..ad05387e34 100644
--- a/src/lib/libc/net/if_nametoindex.c
+++ b/src/lib/libc/net/if_nametoindex.c
@@ -56,9 +56,9 @@ unsigned int if_nametoindex(const char *name)
56 ifconf.ifc_buf = 0; 56 ifconf.ifc_buf = 0;
57 if (ioctl(fd, SIOCGIFCONF, (void *)&ifconf)) 57 if (ioctl(fd, SIOCGIFCONF, (void *)&ifconf))
58 goto ret; 58 goto ret;
59 if (ifconf->ifc_len < IFNAMSIZ) 59 if (ifconf.ifc_len < IFNAMSIZ)
60 goto ret; 60 goto ret;
61 if (!(ifconf->ifc_buf = malloc(ifconf->ifc_len))) 61 if (!(ifconf.ifc_buf = malloc(ifconf.ifc_len)))
62 goto ret; 62 goto ret;
63 if (ioctl(fd, SIOCGIFCONF, (void *)&ifconf)) 63 if (ioctl(fd, SIOCGIFCONF, (void *)&ifconf))
64 goto ret; 64 goto ret;