diff options
author | Richard Levitte <levitte@openssl.org> | 2006-03-22 12:26:57 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2006-03-22 12:26:57 +0100 |
commit | c788e5936564c6b4927f7236a79aac20b5673986 (patch) | |
tree | 8f3cc08e9e12ea8ba1579f30f9c75a08324065c5 /crypto/evp/evp_pkey.c | |
parent | Synchronise with recent changes (diff) | |
download | openssl-c788e5936564c6b4927f7236a79aac20b5673986.tar.xz openssl-c788e5936564c6b4927f7236a79aac20b5673986.zip |
VMS doesn't support includes of paths very well.
Diffstat (limited to '')
-rw-r--r-- | crypto/evp/evp_pkey.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/evp/evp_pkey.c b/crypto/evp/evp_pkey.c index eea4705063..f3eca2b87e 100644 --- a/crypto/evp/evp_pkey.c +++ b/crypto/evp/evp_pkey.c @@ -69,7 +69,11 @@ #endif #include <openssl/bn.h> +#ifdef FLAT_INC +#include "asn1_locl.h" +#else #include "../asn1/asn1_locl.h" +#endif /* Extract a private key from a PKCS8 structure */ |