From 57eaeaba2477d136d9c8e71f390438e47c5f180d Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Tue, 8 May 2018 08:03:24 -0700 Subject: [PATCH] Fix include path. This happened to be working only because of lucky -I argument and At the same time, include digest.h since this file references |EVP_sha1| and other digest-related functions. Change-Id: I0095ea8f5ef21f6e63b3dc819932b38178e09693 Reviewed-on: https://boringssl-review.googlesource.com/28244 Commit-Queue: David Benjamin Reviewed-by: David Benjamin CQ-Verified: CQ bot account: commit-bot@chromium.org --- crypto/fipsmodule/tls/kdf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/fipsmodule/tls/kdf.c b/crypto/fipsmodule/tls/kdf.c index 7c7fcc34..347e9987 100644 --- a/crypto/fipsmodule/tls/kdf.c +++ b/crypto/fipsmodule/tls/kdf.c @@ -52,11 +52,12 @@ #include +#include #include #include #include "internal.h" -#include "../crypto/internal.h" +#include "../../internal.h" // tls1_P_hash computes the TLS P_ function as described in RFC 5246,