summaryrefslogtreecommitdiffstats
path: root/crypto/jpake
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2014-10-11 14:31:53 -0400
committerGeoff Thorpe <geoff@openssl.org>2014-12-08 14:21:35 -0500
commite52a3c3d1401fb917df3aa80a19575521cabe4f4 (patch)
treef8cfad6fc9c6f4b1e74e486d40f26c550de938cb /crypto/jpake
parent41bf25013032da0eeb111ce3c8fc0946c0e61c41 (diff)
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.c3
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>