From 28d12121216d04e93aa3e0ff859ded43ea612779 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Mon, 14 Oct 2024 14:23:54 +0200 Subject: [PATCH] Fix message --- neqo-bin/src/client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neqo-bin/src/client/mod.rs b/neqo-bin/src/client/mod.rs index c75acf7fb6..61b9b8e014 100644 --- a/neqo-bin/src/client/mod.rs +++ b/neqo-bin/src/client/mod.rs @@ -254,7 +254,7 @@ impl Args { "handshake" | "transfer" | "retry" | "ecn" => {} "rebind-port" | "rebind-addr" | "connectionmigration" => { if self.cid_len == 0 { - qinfo!("Resumption test won't work with a zero-length CID; overwriting to 8"); + qinfo!("Rebind/migration test won't work with len-0 CID; overwriting to 8"); self.cid_len = 8; } }