diff options
author | Geoff Thorpe <geoff@openssl.org> | 2014-10-11 20:31:53 +0200 |
---|---|---|
committer | Geoff Thorpe <geoff@openssl.org> | 2014-12-08 20:21:35 +0100 |
commit | e52a3c3d1401fb917df3aa80a19575521cabe4f4 (patch) | |
tree | f8cfad6fc9c6f4b1e74e486d40f26c550de938cb /crypto/jpake | |
parent | Fixed memory leak in the event of a failure of BUF_MEM_grow (diff) | |
download | openssl-e52a3c3d1401fb917df3aa80a19575521cabe4f4.tar.xz openssl-e52a3c3d1401fb917df3aa80a19575521cabe4f4.zip |
Include <openssl/foo.h> instead of "foo.h"
Exported headers shouldn't be included as "foo.h" by code from the same
module, it should only do so for module-internal headers. This is
because the symlinking of exported headers (from include/openssl/foo.h
to crypto/foo/foo.h) is being removed, and the exported headers are
being moved to the include/openssl/ directory instead.
Change-Id: I4c1d80849544713308ddc6999a549848afc25f94
Signed-off-by: Geoff Thorpe <geoff@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/jpake')
-rw-r--r-- | crypto/jpake/jpake.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/jpake/jpake.c b/crypto/jpake/jpake.c index 19382e3b81..9167a8d60d 100644 --- a/crypto/jpake/jpake.c +++ b/crypto/jpake/jpake.c @@ -1,5 +1,4 @@ -#include "jpake.h" - +#include <openssl/jpake.h> #include <openssl/crypto.h> #include <openssl/sha.h> #include <openssl/err.h> |