aboutsummaryrefslogtreecommitdiff
path: root/dbus/iwd/patches
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2021-09-16 12:41:39 +0300
committerCem Keylan <cem@ckyln.com>2021-09-16 12:41:39 +0300
commit63fda194cc3a2ef7d17b8a49e59607a2b2ad6071 (patch)
tree03f3464340b0c354c8c814300085001eef5ae879 /dbus/iwd/patches
parent2fdf81c32aa8342b4c9690c20d99d279e280f254 (diff)
downloadrepository-63fda194cc3a2ef7d17b8a49e59607a2b2ad6071.tar.gz
iwd: bump to 1.18
Diffstat (limited to 'dbus/iwd/patches')
-rw-r--r--dbus/iwd/patches/musl-fix.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/dbus/iwd/patches/musl-fix.patch b/dbus/iwd/patches/musl-fix.patch
new file mode 100644
index 00000000..58d12bfe
--- /dev/null
+++ b/dbus/iwd/patches/musl-fix.patch
@@ -0,0 +1,11 @@
+--- iwd.orig/src/netconfig.c Tue Sep 14 23:01:22 2021
++++ iwd/src/netconfig.c Thu Sep 16 12:38:50 2021
+@@ -185,7 +185,7 @@
+ struct in6_addr in6_addr;
+ char *addr_str = l_malloc(INET6_ADDRSTRLEN);
+
+- memcpy(in6_addr.__in6_u.__u6_addr8, addr, 16);
++ memcpy(in6_addr.__in6_union.__s6_addr, addr, 16);
+
+ if (L_WARN_ON(unlikely(!inet_ntop(AF_INET6, &in6_addr, addr_str,
+ INET6_ADDRSTRLEN)))) {