BUG/MINOR: check: fix tcpcheck error message

add the keyword 'string' when required (error in a tcpcheck expect
string)
This commit is contained in:
Baptiste Assmann 2015-05-01 08:09:29 +02:00 committed by Willy Tarreau
parent e26bf05115
commit 96a5c9b577
1 changed files with 1 additions and 1 deletions

View File

@ -641,7 +641,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)");
}