aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nfs-utils/files/uclibc_bzero_fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/nfs-utils/files/uclibc_bzero_fix.patch')
-rw-r--r--recipes/nfs-utils/files/uclibc_bzero_fix.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/nfs-utils/files/uclibc_bzero_fix.patch b/recipes/nfs-utils/files/uclibc_bzero_fix.patch
new file mode 100644
index 0000000000..2006192d28
--- /dev/null
+++ b/recipes/nfs-utils/files/uclibc_bzero_fix.patch
@@ -0,0 +1,17 @@
+---
+ support/nfs/svc_socket.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: nfs-utils-1.0.6/support/nfs/svc_socket.c
+===================================================================
+--- nfs-utils-1.0.6.orig/support/nfs/svc_socket.c 2007-05-27 16:14:09.000000000 +0100
++++ nfs-utils-1.0.6/support/nfs/svc_socket.c 2007-05-28 22:43:55.000000000 +0100
+@@ -63,7 +63,7 @@ svc_socket (u_long number, int type, int
+ }
+ }
+
+- __bzero ((char *) &addr, sizeof (addr));
++ memset ((char *) &addr,0, sizeof (addr));
+ addr.sin_family = AF_INET;
+
+ #ifndef __UCLIBC__ /* neither getrpcbynumber() nor getrpcbynumber_r() is SuSv3 */