From 24b581b6547093489538030a09875067bb8eef53 Mon Sep 17 00:00:00 2001 From: Easyoakland <97992568+Easyoakland@users.noreply.github.com> Date: Wed, 29 Jan 2025 04:05:20 +0000 Subject: [PATCH] ipv6 -> IPv6 Co-authored-by: Catherine --- src/iface/interface/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iface/interface/mod.rs b/src/iface/interface/mod.rs index 24102fae0..b00446f94 100644 --- a/src/iface/interface/mod.rs +++ b/src/iface/interface/mod.rs @@ -1302,7 +1302,7 @@ impl InterfaceInner { IpRepr::Ipv6(_) => { // Check if we need to fragment it. if total_ip_len > self.caps.ip_mtu() { - net_debug!("ipv6 fragmentation support is unimplemented. Dropping."); + net_debug!("IPv6 fragmentation support is unimplemented. Dropping."); Ok(()) } else { tx_token.consume(total_len, |mut tx_buffer| {