commit | 68ed64148afcf253689241f0fade2e7c0ea4dcdb | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sun Dec 03 18:15:56 2017 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sun Dec 03 21:08:41 2017 +0100 |
tree | a2796b7c45af10bf1e12484b78b411fa81221b10 | |
parent | cd4fe17a2686c7af474340f920eed93f26cecab8 [diff] |
BUG/MINOR: h2: fix a typo causing PING/ACK to be responded to The ACK flag was tested on the frame type instead of the frame flag. To backport to 1.8.
diff --git a/src/mux_h2.c b/src/mux_h2.c index 0c2fcde..bf08005 100644 --- a/src/mux_h2.c +++ b/src/mux_h2.c
@@ -1159,7 +1159,7 @@ } /* schedule a response */ - if (!(h2c->dft & H2_F_PING_ACK)) + if (!(h2c->dff & H2_F_PING_ACK)) h2c->st0 = H2_CS_FRAME_A; return 1; }