From 6a35c175f2b416851518b5831c2c7827d6dbd822 Mon Sep 17 00:00:00 2001 From: Anthony Ramine <123095+nox@users.noreply.github.com> Date: Tue, 26 Apr 2022 17:24:57 +0200 Subject: [PATCH] fix(http1): fix preserving header case without enabling ffi (#2820) The previous commit broke this, but it wasn't released, so released versions will never notice the breakage. --- src/client/conn.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/client/conn.rs b/src/client/conn.rs index 8d8cc01102..a44bc3ccaf 100644 --- a/src/client/conn.rs +++ b/src/client/conn.rs @@ -967,7 +967,6 @@ impl Builder { if opts.h1_title_case_headers { conn.set_title_case_headers(); } - #[cfg(feature = "ffi")] if opts.h1_preserve_header_case { conn.set_preserve_header_case(); }