From: Andy Polyakov Date: Thu, 22 Sep 2005 20:37:50 +0000 (+0000) Subject: Fix SunOS 4 building issue. X-Git-Tag: OpenSSL_0_9_8k^2~1795 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=9dba0554a50a896af5eaaf08b72571d1d32db4e2 Fix SunOS 4 building issue. PR: 1196 --- diff --git a/e_os.h b/e_os.h index e156b63394..5068d1bd74 100644 --- a/e_os.h +++ b/e_os.h @@ -566,7 +566,7 @@ extern char *sys_errlist[]; extern int sys_nerr; # define strerror(errnum) \ (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum]) /* Being signed SunOS 4.x memcpy breaks ASN1_OBJECT table lookup */ -#include "o_str.h" +#include "crypto/o_str.h" # define memcmp OPENSSL_memcmp #endif