From 1680b17c4715d4153a60f7f8ce678a5c1d5c67ae Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Thu, 23 Jun 2022 23:10:48 -0600 Subject: [PATCH] Correct binding terminoligy IP version detection --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 3a22e5d..baf8b1d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -242,7 +242,7 @@ impl Config { || (addr.ip().is_ipv4() != endpoint_addr.ip().is_ipv4()) { return Err(anyhow::anyhow!( - "Host address and endpoint address must be the same IP version" + "Endpoint and bind addresses must be the same IP version" )); } addr