1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Rename ssl_psa_status_to_mbedtls->psa_ssl_status_to_mbedtls

Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
Przemyslaw Stekiel
2022-01-31 20:22:53 +01:00
parent be47ecf5e2
commit 77aec8d181
5 changed files with 33 additions and 33 deletions

View File

@ -1439,7 +1439,7 @@ static int build_transforms( mbedtls_ssl_transform *t_in,
if ( status != PSA_SUCCESS)
{
ret = ssl_psa_status_to_mbedtls( status );
ret = psa_ssl_status_to_mbedtls( status );
goto cleanup;
}
@ -1459,7 +1459,7 @@ static int build_transforms( mbedtls_ssl_transform *t_in,
if ( status != PSA_SUCCESS)
{
ret = ssl_psa_status_to_mbedtls( status );
ret = psa_ssl_status_to_mbedtls( status );
goto cleanup;
}
@ -1470,7 +1470,7 @@ static int build_transforms( mbedtls_ssl_transform *t_in,
if ( status != PSA_SUCCESS)
{
ret = ssl_psa_status_to_mbedtls( status );
ret = psa_ssl_status_to_mbedtls( status );
goto cleanup;
}
@ -1483,7 +1483,7 @@ static int build_transforms( mbedtls_ssl_transform *t_in,
if ( status != PSA_SUCCESS)
{
ret = ssl_psa_status_to_mbedtls( status );
ret = psa_ssl_status_to_mbedtls( status );
goto cleanup;
}
@ -1494,7 +1494,7 @@ static int build_transforms( mbedtls_ssl_transform *t_in,
if ( status != PSA_SUCCESS)
{
ret = ssl_psa_status_to_mbedtls( status );
ret = psa_ssl_status_to_mbedtls( status );
goto cleanup;
}
}