commit | 67df95a8a2a0f64c7faeab85efe0fd2fbfebd8f6 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu Apr 14 12:02:34 2022 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Thu Apr 14 12:02:35 2022 +0200 |
tree | 8a9039b45a2c8367d627eb23bac73eae1301e440 | |
parent | ae660be547eb72b5c213d87769e60c527fe6b7cd [diff] |
BUILD: http-client: Avoid dead code when compiled without SSL support When an HTTP client is started on an HAProxy compiled without the SSL support, an error is triggered when HTTPS is used. In this case, the freshly created conn-stream is released. But this code is specific to the non-SSL part. Thus it is moved the in right #if/#else section. This patch should fix the issue #1655.