5c9ff64b85
Fix build on systems that don't have strndup(3) (PR #36281) 1.2.5 showing the status code would garble the screen 1.2.4 fixed memory-leak in SSL code
12 lines
246 B
Text
12 lines
246 B
Text
$NetBSD: patch-ac,v 1.1 2007/09/18 20:30:01 adrianp Exp $
|
|
|
|
--- str.h.orig 2007-07-26 09:00:31.000000000 +0100
|
|
+++ str.h
|
|
@@ -15,6 +15,6 @@
|
|
|
|
#include <string.h>
|
|
|
|
-#ifndef strndup
|
|
+#ifndef HAVE_STRNDUP
|
|
char *strndup(char *in, int size);
|
|
#endif
|