commit | 983eb31fd197abc3082f0d3691059adae595d534 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sat Dec 28 19:16:26 2013 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sat Dec 28 21:33:37 2013 +0100 |
tree | d128b36fef34df2b91c37dfda702829fc3d9b1ce | |
parent | a3ae932d3498eb154604cf319a9c49636c4f859d [diff] |
BUG/MINOR: channel: CHN_INFINITE_FORWARD must be unsigned This value is stored as unsigned in chn->to_forward. Having it defined as signed makes it impossible to pass channel_forward() a previously saved value because the argument will be zero-extended during the conversion to long long, while the test will be performed using sign extension. There is no impact on existing code right now.