Loading...
net/FreeBSD/nsap_addr.c.patch /dev/null Libc-583
--- /dev/null
+++ Libc/Libc-583/net/FreeBSD/nsap_addr.c.patch
@@ -0,0 +1,42 @@
+--- nsap_addr.c.orig	2008-09-01 21:04:36.000000000 -0700
++++ nsap_addr.c	2008-09-01 21:11:10.000000000 -0700
+@@ -17,6 +17,10 @@
+ 
+ #if defined(LIBC_SCCS) && !defined(lint)
+ static const char rcsid[] = "$Id: nsap_addr.c,v 1.3.18.2 2005/07/28 07:38:08 marka Exp $";
++
++/* the algorithms only can deal with ASCII, so we optimize for it */
++#define USE_ASCII
++
+ #endif /* LIBC_SCCS and not lint */
+ #include <sys/cdefs.h>
+ __FBSDID("$FreeBSD: src/lib/libc/inet/nsap_addr.c,v 1.3 2007/06/03 17:20:26 ume Exp $");
+@@ -33,10 +37,12 @@ __FBSDID("$FreeBSD: src/lib/libc/inet/ns
+ 
+ #include <ctype.h>
+ #include <resolv.h>
+-#include <resolv_mt.h>
++//#include <resolv_mt.h>
+ 
+ #include "port_after.h"
+ 
++#include <stdlib.h>
++
+ static char
+ xtob(int c) {
+ 	return (c - (((c >= '0') && (c <= '9')) ? '0' : '7'));
+@@ -82,9 +88,13 @@ char *
+ inet_nsap_ntoa(int binlen, const u_char *binary, char *ascii) {
+ 	int nib;
+ 	int i;
+-	char *tmpbuf = inet_nsap_ntoa_tmpbuf;
++	char *tmpbuf = NULL;
+ 	char *start;
+ 
++	if (tmpbuf == NULL) {
++		tmpbuf = malloc(255*3);
++		if (tmpbuf == NULL) return NULL;
++	}
+ 	if (ascii)
+ 		start = ascii;
+ 	else {