- From 68e4fc2b9910dd090c5e729203b72444f75aaa75 Mon Sep 17 00:00:00 2001
- From: Baptiste Assmann <bedis9@gmail.com>
- Date: Fri, 1 May 2015 08:09:29 +0200
- Subject: [PATCH 3/8] BUG/MINOR: check: fix tcpcheck error message
-
- add the keyword 'string' when required (error in a tcpcheck expect
- string)
- (cherry picked from commit 96a5c9b57738c05ecce7822093b9c4118123dc1e)
- ---
- src/checks.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
- diff --git a/src/checks.c b/src/checks.c
- index 71debb6..8b53f97 100644
- --- a/src/checks.c
- +++ b/src/checks.c
- @@ -614,7 +614,7 @@ static void chk_report_conn_err(struct connection *conn, int errno_bck, int expi
- }
- else if (check->last_started_step && check->last_started_step->action == TCPCHK_ACT_EXPECT) {
- if (check->last_started_step->string)
- - chunk_appendf(chk, " (string '%s')", check->last_started_step->string);
- + chunk_appendf(chk, " (expect string '%s')", check->last_started_step->string);
- else if (check->last_started_step->expect_regex)
- chunk_appendf(chk, " (expect regex)");
- }
- --
- 2.0.5
-
|