summaryrefslogtreecommitdiffstats
path: root/package/libmbus/libmbus-0.6.1-bcopy.patch
blob: 8b8310c85864840ef2e5bcc982d9997a565f9a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Drop bcopy since it's deprecated.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
diff -Nura libmbus-0.6.1/mbus/mbus-tcp.c libmbus-0.6.1-bcopy/mbus/mbus-tcp.c
--- libmbus-0.6.1/mbus/mbus-tcp.c	2011-11-06 02:34:28.000000000 -0300
+++ libmbus-0.6.1-bcopy/mbus/mbus-tcp.c	2012-05-03 08:11:39.680346347 -0300
@@ -78,7 +78,7 @@
         return NULL;
     }
 
-    bcopy((void *)(host_addr->h_addr), (void *)(&s_addr.sin_addr), host_addr->h_length);
+    memmove((void *)(&s_addr.sin_addr), (void *)(host_addr->h_addr), host_addr->h_length);
 
     if (connect(handle->sock, (struct sockaddr *)&s_addr, sizeof(s_addr)) < 0)
     {