commit | 33e03cec5f171d2989cb4ff7b607c72d4ac1a86a | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Tue Dec 20 18:14:56 2022 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Mon Jan 09 18:41:08 2023 +0100 |
tree | 42ee716a46540c54735e34fc846eae1fbe9e5be3 | |
parent | d898841530c88c6979679a21bf8d4f09fff39f68 [diff] [blame] |
MINOR: channel: Remove CF_READ_ACTIVITY Thanks to previous changes, CF_READ_ACTIVITY flags can be removed. Everywhere it was used, its value is now directly used (CF_READ_EVENT|CF_READ_ERROR).
diff --git a/src/stconn.c b/src/stconn.c index 1876686..24b04cc 100644 --- a/src/stconn.c +++ b/src/stconn.c
@@ -1226,7 +1226,7 @@ task_queue(task); } - if (ic->flags & CF_READ_ACTIVITY) + if (ic->flags & (CF_READ_EVENT|CF_READ_ERROR)) ic->flags &= ~CF_READ_DONTWAIT; }