From: Ian Jackson Date: Sun, 25 Sep 2022 19:31:53 +0000 (+0100) Subject: config: Drop mention of DEFAULT here too X-Git-Tag: hippotat/1.0.0~23 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=62381cd11f8770ec1970608859a58dc67af377c8;p=hippotat.git config: Drop mention of DEFAULT here too Signed-off-by: Ian Jackson --- diff --git a/src/config.rs b/src/config.rs index 90f2296..beedd5f 100644 --- a/src/config.rs +++ b/src/config.rs @@ -239,7 +239,7 @@ impl FromStr for SectionName { let (server, client) = s.split_ascii_whitespace().collect_tuple() .ok_or_else(|| anyhow!( "bad section name {:?} \ - (must be COMMON, DEFAULT, , , or ", + (must be COMMON, , , or ", s ))?; let server = server.parse().context("server name in link section name")?;