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;
 }