Use quotes include of psa_util_internal.h
psa_utils_internal.h was broken out of mbedtls/psa_utils.h, which in some places were included as <mbedtls/psa_utils.h>. But since psa_utils_internals.h should be internal, we should not rely on the system include paths. I suspect a regexp replace gone slightly wrong. Signed-off-by: Kristian Larsson <kristian@spritelink.net>
This commit is contained in:
parent
8595984d72
commit
a1aeff4124
3 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
||||||
#include "psa_crypto_slot_management.h"
|
#include "psa_crypto_slot_management.h"
|
||||||
|
|
||||||
#include <mbedtls/ecjpake.h>
|
#include <mbedtls/ecjpake.h>
|
||||||
#include <psa_util_internal.h>
|
#include "psa_util_internal.h"
|
||||||
|
|
||||||
#include <mbedtls/platform.h>
|
#include <mbedtls/platform.h>
|
||||||
#include <mbedtls/error.h>
|
#include <mbedtls/error.h>
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#ifndef PSA_CRYPTO_RANDOM_IMPL_H
|
#ifndef PSA_CRYPTO_RANDOM_IMPL_H
|
||||||
#define PSA_CRYPTO_RANDOM_IMPL_H
|
#define PSA_CRYPTO_RANDOM_IMPL_H
|
||||||
|
|
||||||
#include <psa_util_internal.h>
|
#include "psa_util_internal.h"
|
||||||
|
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
|
#if defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include <psa/crypto.h>
|
#include <psa/crypto.h>
|
||||||
|
|
||||||
#include "psa_crypto_core.h"
|
#include "psa_crypto_core.h"
|
||||||
#include <psa_util_internal.h>
|
#include "psa_util_internal.h"
|
||||||
|
|
||||||
/* The following includes are needed for MBEDTLS_ERR_XXX macros */
|
/* The following includes are needed for MBEDTLS_ERR_XXX macros */
|
||||||
#include <mbedtls/error.h>
|
#include <mbedtls/error.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue