diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-03-19 22:37:21 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-03-19 22:37:21 +0100 |
commit | 80851028efc2fa9554ea289c2aea58eb9d46a7a7 (patch) | |
tree | 0f2ccce1eee872c6a74f348945e8839408430994 /lib | |
parent | 4ff5cfd5fa5f4bce90852efef1c5f28995171108 (diff) |
mbedtls: fix compiler warning
vtls/mbedtls.h:67:36: warning: implicit declaration of function
‘mbedtls_sha256’ [-Wimplicit-function-declaration]
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/mbedtls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/vtls/mbedtls.c b/lib/vtls/mbedtls.c index 7e0760316..f0900a5af 100644 --- a/lib/vtls/mbedtls.c +++ b/lib/vtls/mbedtls.c @@ -40,6 +40,7 @@ #include <mbedtls/error.h> #include <mbedtls/entropy.h> #include <mbedtls/ctr_drbg.h> +#include <mbedtls/sha256.h> #include "urldata.h" #include "sendf.h" |