Commit 93dcdddb authored by Richard Levitte's avatar Richard Levitte
Browse files

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.
parent f291e0eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
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
+4 −0
Original line number Diff line number Diff line
@@ -59,6 +59,10 @@

#ifdef OPENSSL_FIPS

#ifndef PATH_MAX
#define PATH_MAX 1024
#endif

int FIPS_md5_allowed;
int FIPS_selftest_fail;