summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-17 11:32:59 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-17 11:32:59 +0000
commiteddee6167183debe075cf6acd24fdcb5bf8616a3 (patch)
treebdec28bad7a746af8a659fb4c05fa009b709364a /apps
parentd70323f1c5fcc8845a2edf48b49178526b7b0305 (diff)
PR: 1956
Submitted by: Guenter <lists@gknw.net> Approved by: steve@openssl.org Netware doesn't have strings.h
Diffstat (limited to 'apps')
-rw-r--r--apps/apps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/apps.c b/apps/apps.c
index b992a04ba6..47413f5827 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -118,7 +118,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#ifndef OPENSSL_SYSNAME_WIN32
+#if !defined(OPENSSL_SYSNAME_WIN32) && !defined(NETWARE_CLIB)
#include <strings.h>
#endif
#include <sys/types.h>