diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2015-07-14 20:51:37 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2015-07-14 20:51:37 +0000 |
commit | 750a62195c0a5cae560acd300619eb1df163ace6 (patch) | |
tree | 361655669b572926303a290bca8baf39d40f508b /package/utils | |
parent | a5641a64442bea43c48bf7885f30d60c22c2fc02 (diff) | |
download | upstream-750a62195c0a5cae560acd300619eb1df163ace6.tar.gz upstream-750a62195c0a5cae560acd300619eb1df163ace6.tar.bz2 upstream-750a62195c0a5cae560acd300619eb1df163ace6.zip |
admswconfig: fix compile with musl
caddr_t is not defined everywhere any more, cast it the the real
pointer type of ifr_data.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 46371
Diffstat (limited to 'package/utils')
-rw-r--r-- | package/utils/admswconfig/patches/002-fix-musl.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/utils/admswconfig/patches/002-fix-musl.patch b/package/utils/admswconfig/patches/002-fix-musl.patch new file mode 100644 index 0000000000..3dad1f99d5 --- /dev/null +++ b/package/utils/admswconfig/patches/002-fix-musl.patch @@ -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; |