]> git.ipfire.org Git - thirdparty/haproxy.git/commit
BUG/MEDIUM: check: tcpcheck regression introduced by e16c1b3f
authorBaptiste Assmann <bedis9@gmail.com>
Sat, 25 Apr 2015 14:03:06 +0000 (16:03 +0200)
committerWilly Tarreau <w@1wt.eu>
Wed, 29 Apr 2015 11:39:22 +0000 (13:39 +0200)
commitf95bc8e3e0800dcf22194a43edce837d0baae772
treed7cf35cad1625d43fe7f5be3bce6839f4e9d4213
parent0ebc55f6b42181c2206487ca4db3adc1d5846990
BUG/MEDIUM: check: tcpcheck regression introduced by e16c1b3f

The commit e16c1b3f changed the way the function tcpcheck_get_step_id is
now called (check instead of server).
This change introduced a regression since now this function would return
0 all the time because of:
 if (check->current_step)
   return 0;

This patch fixes this issue by inversing the test: you want to return 0
only if current_step is not yet set :)

No backport is needed.
src/checks.c