summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/if_indextoname.c
diff options
context:
space:
mode:
authorcmetz <>1999-06-23 22:50:49 +0000
committercmetz <>1999-06-23 22:50:49 +0000
commitcfe67577db8d1872a9aaad7dd5db3b05b7b400dd (patch)
treea7de39425d2534e1330ecea76e150b65c3ff4eaa /src/lib/libc/net/if_indextoname.c
parentccb44bc54f33622e79fd6fa24fd8999dc2543642 (diff)
downloadopenbsd-cfe67577db8d1872a9aaad7dd5db3b05b7b400dd.tar.gz
openbsd-cfe67577db8d1872a9aaad7dd5db3b05b7b400dd.tar.bz2
openbsd-cfe67577db8d1872a9aaad7dd5db3b05b7b400dd.zip
Compilation fixes.
Diffstat (limited to 'src/lib/libc/net/if_indextoname.c')
-rw-r--r--src/lib/libc/net/if_indextoname.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/net/if_indextoname.c b/src/lib/libc/net/if_indextoname.c
index 1301224444..b3c89fb9a8 100644
--- a/src/lib/libc/net/if_indextoname.c
+++ b/src/lib/libc/net/if_indextoname.c
@@ -88,13 +88,13 @@ char *if_indextoname(unsigned int index, char *name)
88 88
89 ifconf.ifc_len = 0; 89 ifconf.ifc_len = 0;
90 ifconf.ifc_buf = 0; 90 ifconf.ifc_buf = 0;
91 if (ioctl(fd, SIOCGIFCONF, (void *)ifconf)) 91 if (ioctl(fd, SIOCGIFCONF, (void *)&ifconf))
92 goto ret; 92 goto ret;
93 if (ifconf->ifc_len < IFNAMSIZ) 93 if (ifconf.ifc_len < IFNAMSIZ)
94 goto ret; 94 goto ret;
95 if (!(ifconf->ifc_buf = malloc(ifconf->ifc_len))) 95 if (!(ifconf.ifc_buf = malloc(ifconf.ifc_len)))
96 goto ret; 96 goto ret;
97 if (ioctl(fd, SIOCGIFCONF, (void *)ifconf)) 97 if (ioctl(fd, SIOCGIFCONF, (void *)&ifconf))
98 goto ret; 98 goto ret;
99 99
100 i = 0; 100 i = 0;