diff --git a/README.rst b/README.rst
index 859338aec7dcfe8a2dd8bb95b223ef39ceb5674f..5697d42e3e0917101938817f590cd391b8b6014e 100644
--- a/README.rst
+++ b/README.rst
@@ -52,14 +52,14 @@ The client and server under examples directory require patched OpenSSL
 as crypto backend:
 
 * Patched OpenSSL
-  (https://github.com/tatsuhiro-t/openssl/tree/openssl-quic-draft-24)
+  (https://github.com/tatsuhiro-t/openssl/tree/OpenSSL_1_1_1d-quic-draft-24)
 
 Build from git
 --------------
 
 .. code-block:: text
 
-   $ git clone --depth 1 -b openssl-quic-draft-24 https://github.com/tatsuhiro-t/openssl
+   $ git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-24 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 572269719de1812cabe753ad391a06e2e1a5e32d..002e043505968ced0ffc827d78ecfbcf23af726e 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 -b openssl-quic-draft-24 https://github.com/tatsuhiro-t/openssl
+git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-24 https://github.com/tatsuhiro-t/openssl
 cd openssl
 ./config enable-tls1_3 --prefix=$PWD/build
 make -j$(nproc)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 3c5ce8c28cf5bec9af7d441b1dbbe07097f80f32..123b75897bd265d543a5e88c70a2337e38f4f442 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -4,7 +4,7 @@ RUN /usr/local/bin/clean-install \
         git g++ make binutils autoconf automake autotools-dev libtool \
 	pkg-config libev-dev libjemalloc-dev \
         libev4 libjemalloc1 ca-certificates mime-support && \
-    git clone --depth 1 -b openssl-quic-draft-24 https://github.com/tatsuhiro-t/openssl && \
+    git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-24 https://github.com/tatsuhiro-t/openssl && \
     cd openssl && ./config enable-tls1_3 --openssldir=/etc/ssl && make -j$(nproc) && make install_sw && cd .. && rm -rf openssl && \
     git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \
     cd nghttp3 && autoreconf -i && \