commit | eddee6167183debe075cf6acd24fdcb5bf8616a3 | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Wed Jun 17 11:32:59 2009 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Wed Jun 17 11:32:59 2009 +0000 |
tree | bdec28bad7a746af8a659fb4c05fa009b709364a | |
parent | d70323f1c5fcc8845a2edf48b49178526b7b0305 [diff] |
PR: 1956 Submitted by: Guenter <lists@gknw.net> Approved by: steve@openssl.org Netware doesn't have strings.h
diff --git a/apps/apps.c b/apps/apps.c index b992a04..47413f5 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>