Loading...
net/FreeBSD/inet_ntoa.c.patch /dev/null Libc-594.1.4
--- /dev/null
+++ Libc/Libc-594.1.4/net/FreeBSD/inet_ntoa.c.patch
@@ -0,0 +1,18 @@
+--- inet_ntoa.c.orig	2008-09-01 21:00:28.000000000 -0700
++++ inet_ntoa.c	2008-09-01 21:00:53.000000000 -0700
+@@ -59,6 +59,7 @@ inet_ntoa(struct in_addr in) {
+ 	return (ret);
+ }
+ 
++#if 0
+ char *
+ inet_ntoa_r(struct in_addr in, char *buf, socklen_t size)
+ {
+@@ -66,6 +67,7 @@ inet_ntoa_r(struct in_addr in, char *buf
+ 	(void) inet_ntop(AF_INET, &in, buf, size);
+ 	return (buf);
+ }
++#endif
+ 
+ /*
+  * Weak aliases for applications that use certain private entry points,