We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2123d1b commit baac3a6Copy full SHA for baac3a6
1 file changed
htp/htp_transaction.c
@@ -1348,7 +1348,7 @@ htp_status_t htp_tx_state_response_headers(htp_tx_t *tx) {
1348
} else if (bstr_cmp_c_nocasenorzero(ce->value, "lzma") == 0) {
1349
tx->response_content_encoding = HTP_COMPRESSION_LZMA;
1350
} else if (bstr_cmp_c_nocasenorzero(ce->value, "inflate") == 0 ||
1351
- bstr_cmp_c_nocasenorzero(ce->value, "identify") == 0) {
+ bstr_cmp_c_nocasenorzero(ce->value, "identity") == 0) {
1352
// ignore
1353
} else {
1354
/* exceptional cases: enter slow path */
0 commit comments