- [PATCH 05/13] BUG/MINOR: http/sample: gmtime/localtime can fail - [PATCH 06/13] DOC: typo in 'redirect', 302 code meaning - [PATCH 07/13] DOC: mention that %ms is left-padded with zeroes. - [PATCH 08/13] CLEANUP: .gitignore: ignore more test files - [PATCH 09/13] CLEANUP: .gitignore: finally ignore everything but what - [PATCH 10/13] MEDIUM: config: emit a warning on a frontend without - [PATCH 11/13] BUG/MEDIUM: counters: ensure that src_{inc,clr}_gpc0 - [PATCH 12/13] DOC: ssl: missing LF - [PATCH 13/13] DOC: fix example of http-request using Signed-off-by: heil <heil@terminal-consulting.de>
27 lines
830 B
Diff
27 lines
830 B
Diff
From 2272b4ffde38c836adfd9a9b43ff5c019ef4190a Mon Sep 17 00:00:00 2001
|
|
From: Thierry FOURNIER <tfournier@arpalert.org>
|
|
Date: Wed, 26 Aug 2015 08:21:26 +0200
|
|
Subject: [PATCH 12/13] DOC: ssl: missing LF
|
|
|
|
An error message miss LF
|
|
(cherry picked from commit bc965348d7ccc0a306504232ab85dc240fd31fbf)
|
|
---
|
|
src/ssl_sock.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/ssl_sock.c b/src/ssl_sock.c
|
|
index 2ae45ec..8f698c0 100644
|
|
--- a/src/ssl_sock.c
|
|
+++ b/src/ssl_sock.c
|
|
@@ -1760,7 +1760,7 @@ int ssl_sock_prepare_srv_ctx(struct server *srv, struct proxy *curproxy)
|
|
#ifndef OPENSSL_NO_SSL3
|
|
SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, SSLv3_client_method());
|
|
#else
|
|
- Alert("SSLv3 support requested but unavailable.");
|
|
+ Alert("SSLv3 support requested but unavailable.\n");
|
|
cfgerr++;
|
|
#endif
|
|
}
|
|
--
|
|
2.4.6
|
|
|