commit | 09f2e77eb1adb6cd462744784aa9bd666219cf8b | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Feb 12 08:42:30 2021 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Feb 12 16:23:46 2021 +0100 |
tree | c2d7e5cd5c4314c50142052114029ce7942f160a | |
parent | 016255a483f28190ae5ba5652d6db7e16b5d222d [diff] |
BUG/MINOR: tcpheck: the source list must be a const in dup_tcpcheck_var() This is just an API bug but it's annoying when trying to tidy the code. The source list passed in argument must be a const and not a variable, as it's typically the list head from a default proxy and must obviously not be modified by the function. No backport is needed as it only impacts new code.