admswconfig: fix compile with musl
[openwrt-working-2016/.git] / package / utils / admswconfig / patches / 002-fix-musl.patch
diff --git a/package/utils/admswconfig/patches/002-fix-musl.patch b/package/utils/admswconfig/patches/002-fix-musl.patch
new file mode 100644 (file)
index 0000000..3dad1f9
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/admswconfig.c
++++ b/admswconfig.c
+@@ -68,7 +68,7 @@ int main(int argc, char **argv)
+               return 1;
+       }
+       strcpy(ifr.ifr_name, device);
+-      ifr.ifr_data = (caddr_t)&info;
++      ifr.ifr_data = (void *)&info;
+       if (ioctl(fd, SIOCGADMINFO, &ifr) < 0) {
+               perror("SIOCGADMINFO");
+               return 1;