Some platforms (Win32, it seems) do not have PATH_MAX, so let's define

it with a generic value (1024) if it isn't already defined.
This commit is contained in:
Richard Levitte 2004-04-15 16:29:44 +00:00
parent f291e0eb32
commit 93dcdddbfd
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
HMAC-SHA1(fips.c)= 28c5bb3a276b1536327eb61b496b8c02a574c279
HMAC-SHA1(fips.c)= 694287eefbf2d0a4fe1e4abc6c4f485375598e3a
HMAC-SHA1(fips_err_wrapper.c)= d3e2be316062510312269e98f964cb87e7577898
HMAC-SHA1(fips.h)= aeab7ad3b7a84dc83cf5099cffdec07a3f995dea
HMAC-SHA1(fips_err.h)= f4203a47100a815c21cf3a97092f91a595938f7c

View File

@ -59,6 +59,10 @@
#ifdef OPENSSL_FIPS
#ifndef PATH_MAX
#define PATH_MAX 1024
#endif
int FIPS_md5_allowed;
int FIPS_selftest_fail;