From 0ae6ee2597df72cd63f34e21c1896a866f9f49b6 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 13 Jan 2026 13:04:35 +0100 Subject: [PATCH] rust/htp: formatting fixup (cherry picked from commit ff3def130c6521b32a806f20ed308199205e2541) --- rust/htp/src/headers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/htp/src/headers.rs b/rust/htp/src/headers.rs index 7b1f2b46c9..6ac17aee33 100644 --- a/rust/htp/src/headers.rs +++ b/rust/htp/src/headers.rs @@ -287,7 +287,7 @@ impl Parser { } // limits quadratic complexity when each new packet just keeps adding a folded line - const MAX_NB_FOLD : u8 = 128; + const MAX_NB_FOLD: u8 = 128; /// Parse a complete header value, including any folded headers fn value(&self) -> impl Fn(&[u8]) -> IResult<&[u8], Value> + '_ {