1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

No booleans and import config

This commit is contained in:
Philippe Antoine
2019-07-10 14:26:31 +02:00
parent a82fdd4763
commit 42a2ce8255
5 changed files with 6 additions and 8 deletions

View File

@ -1,6 +1,5 @@
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include "common.h"
#include "mbedtls/ssl.h"
@ -12,7 +11,7 @@
#ifdef MBEDTLS_SSL_CLI_C
static bool initialized = 0;
static int initialized = 0;
#if defined(MBEDTLS_X509_CRT_PARSE_C) && defined(MBEDTLS_PEM_PARSE_C)
static mbedtls_x509_crt cacert;
#endif