]> git.saurik.com Git - apple/libc.git/blobdiff - net/FreeBSD/nsap_addr.c
Libc-825.24.tar.gz
[apple/libc.git] / net / FreeBSD / nsap_addr.c
index fd34e0ef17f9d862d66ed60f648befd8247d175c..5bf73e59c5e782d076be48fb90a5bab8e4b61c07 100644 (file)
 
 #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/nsap_addr.c,v 1.3 2007/06/03 17:20:26 ume
 
 #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 {