aboutsummaryrefslogtreecommitdiff
path: root/crypto/bio
diff options
context:
space:
mode:
authorMichaƂ Janiszewski <janisozaur@gmail.com>2017-12-03 23:25:59 +0100
committerCQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>2017-12-04 01:32:37 +0000
commitd3ec6f1adb389de1a5d9159f56ccce225a17c363 (patch)
treeff5eaafbb901a54a598d1d95232e3f8b2aee42d4 /crypto/bio
parentbc37ad91fe74da35f97cd2748e38fd572ce5decd (diff)
downloadboringssl-d3ec6f1adb389de1a5d9159f56ccce225a17c363.zip
boringssl-d3ec6f1adb389de1a5d9159f56ccce225a17c363.tar.gz
boringssl-d3ec6f1adb389de1a5d9159f56ccce225a17c363.tar.bz2
Add missing errno.h include to bio_test.cc
This fixes compilation on aarch64 and other architectures for Android. Change-Id: I0b09ab06858c92d07e2376e244a4626a6af5037b Reviewed-on: https://boringssl-review.googlesource.com/23764 Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: Adam Langley <agl@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio_test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/bio/bio_test.cc b/crypto/bio/bio_test.cc
index eb54f7e..8479c8e 100644
--- a/crypto/bio/bio_test.cc
+++ b/crypto/bio/bio_test.cc
@@ -27,6 +27,7 @@
#if !defined(OPENSSL_WINDOWS)
#include <arpa/inet.h>
+#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <string.h>