From 2c9f6b86da44438764d505d82e1f17eb081d7169 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 May 2026 11:29:05 +0100 Subject: [PATCH] Format lines_crlf call sites properly for new approach Signed-off-by: Ian Jackson --- client/client.rs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/client/client.rs b/client/client.rs index 8251d98..10a15a9 100644 --- a/client/client.rs +++ b/client/client.rs @@ -127,13 +127,13 @@ fn submit_request<'r, 'c:'r>( Content-Type: text/plain; charset="utf-8" Content-Disposition: form-data; name="m" "#), - &c.ic.link.client, - token, - c.ic.target_requests_outstanding, - show_timeout, - c.ic.mtu, - c.ic.max_batch_down, - c.ic.max_batch_up, + &c.ic.link.client, + token, + c.ic.target_requests_outstanding, + show_timeout, + c.ic.mtu, + c.ic.max_batch_down, + c.ic.max_batch_up, ); let prefix2 = lines_crlf!(&LitLinesCrlf(r#" @@ -141,12 +141,12 @@ fn submit_request<'r, 'c:'r>( --b Content-Type: application/octet-stream Content-Disposition: form-data; name="d" - "#), - ); + "#, + )); let suffix = lines_crlf!(&LitLinesCrlf(r#" - --b--"#), - ); + --b--"#, + )); macro_rules! content { { $out:ty, -- 2.30.2