From eb9d2826ded44d5d7cb628eff4810c3ae17fba8d Mon Sep 17 00:00:00 2001 From: andrew-canaday Date: Mon, 10 Jun 2024 19:47:09 -0400 Subject: [PATCH] HTTP: Correct attribute name for ymo_http_hdr_cmp --- src/protocol/http/ymo_http_hdr_table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/http/ymo_http_hdr_table.h b/src/protocol/http/ymo_http_hdr_table.h index 65bffe4..2ae3cdf 100644 --- a/src/protocol/http/ymo_http_hdr_table.h +++ b/src/protocol/http/ymo_http_hdr_table.h @@ -57,7 +57,7 @@ YMO_FUNC_PURE ymo_http_hdr_id_t ymo_http_hdr_hash(const char* str_in, size_t* le YMO_FUNC_PURE ymo_http_hdr_id_t ymo_http_hdr_hash_ch(ymo_http_hdr_id_t h, char c); /** Default hash item comparison function used by header table. */ -YMO_FUNC_PURE_P int ymo_http_hdr_cmp( +YMO_FUNC_PURE int ymo_http_hdr_cmp( ymo_http_hdr_table_node_t* current, const char*hdr, ymo_http_hdr_id_t h_id);