diff options
author | Bodo Möller <bodo@openssl.org> | 1999-05-21 11:16:48 +0000 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-05-21 11:16:48 +0000 |
commit | 7e701817234ff2be2a745fc63f32ccb5e874854c (patch) | |
tree | 9fabfb74c7cfdd98d897ce0f0f43efe42996b9d9 /ssl/ssl_locl.h | |
parent | d76c85a301f0ab5ff74b54f841cf5db70916dbba (diff) | |
download | openssl-new-7e701817234ff2be2a745fc63f32ccb5e874854c.tar.gz |
It was a very bad idea to use #include "../e_os.h" -- when this occurs
in cryptlib.h (which is often included as "../cryptlib.h"), then the
question remains relative to which directory this is to be interpreted.
gcc went one further directory up, as intended; but makedepend thinks
differently, and so probably do some C compilers. So the ../ must go away;
thus e_os.h goes back into include/openssl (but I now use
#include "openssl/e_os.h" instead of <openssl/e_os.h> to make the point) --
and we have another huge bunch of dependency changes. Argh.
Diffstat (limited to 'ssl/ssl_locl.h')
-rw-r--r-- | ssl/ssl_locl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index fc2a5a1797..2439de4a12 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -63,11 +63,7 @@ #include <string.h> #include <errno.h> -#ifndef FLAT_INC -# include "../e_os.h" -#else -# include "e_os.h" -#endif +#include "openssl/e_os.h" #include <openssl/buffer.h> #include <openssl/comp.h> |