Commit e52a3c3d authored by Geoff Thorpe's avatar Geoff Thorpe
Browse files

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: default avatarGeoff Thorpe <geoff@openssl.org>
Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 41bf2501
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
/* crypto/bn/knownprimes.c */
/* Insert boilerplate */

#include "bn.h"
#include <openssl/bn.h>

/* "First Oakley Default Group" from RFC2409, section 6.1.
 *
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@
 * words reasonable performance even with not so modern compilers.
 */

#include "camellia.h"
#include <openssl/camellia.h>
#include "cmll_locl.h"
#include <string.h>
#include <stdlib.h>
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@
#include <openssl/asn1t.h>
#include <openssl/pem.h>
#include <openssl/x509v3.h>
#include "cms.h"
#include <openssl/cms.h>
#include "cms_lcl.h"


+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@
#include <openssl/pem.h>
#include <openssl/x509v3.h>
#include <openssl/err.h>
#include "cms.h"
#include <openssl/cms.h>
#include "cms_lcl.h"

/* CMS SignedData Attribute utilities */
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@
#include <openssl/x509.h>
#include <openssl/err.h>
#include <openssl/pem.h>
#include "cms.h"
#include <openssl/cms.h>
#include "cms_lcl.h"

int CMS_stream(unsigned char ***boundary, CMS_ContentInfo *cms)
Loading