From 96750c7ab7a5e2edbdf0448d77c75da0a307b3ed Mon Sep 17 00:00:00 2001
From: Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>
Date: Mon, 23 Apr 2018 01:22:20 +0900
Subject: [PATCH] Build with patched OpenSSL for now to get TLSv1.3 draft-28

---
 README.rst          | 2 +-
 ci/build_openssl.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.rst b/README.rst
index c242398e..0f6574c2 100644
--- a/README.rst
+++ b/README.rst
@@ -52,7 +52,7 @@ Build from git
 
 .. code-block:: text
 
-   $ git clone --depth 1 https://github.com/openssl/openssl
+   $ git clone -b tlsv1.3-28 --depth 1 https://github.com/tatsuhiro-t/openssl
    $ cd openssl
    $ # For Linux
    $ ./config enable-tls1_3 --prefix=$PWD/build
diff --git a/ci/build_openssl.sh b/ci/build_openssl.sh
index edcde43f..88e73a86 100755
--- a/ci/build_openssl.sh
+++ b/ci/build_openssl.sh
@@ -2,7 +2,7 @@
 #build last openssl master (for Travis)
 
 cd ..
-git clone --depth 1 https://github.com/openssl/openssl
+git clone -b tlsv1.3-28 --depth 1 https://github.com/tatsuhiro-t/openssl
 cd openssl
 ./config enable-tls1_3 --prefix=$PWD/build
 make -j$(nproc)
-- 
GitLab