We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1db2d2 commit 29a96d8Copy full SHA for 29a96d8
wicketd/src/rss_config.rs
@@ -716,7 +716,8 @@ pub fn validate_rack_subnet(
716
717
// Do not allow addresses more specific than /56
718
if rack_subnet_address.octets()[7..].iter().any(|x| *x != 0x00) {
719
- return Err("rack subnet address is /56, but a more specific prefix was provided".into());
+ return Err("rack subnet address is /56, \
720
+ but a more specific prefix was provided".into());
721
};
722
723
Ipv6Net::new(rack_subnet_address, 56).map_err(|e| e.to_string())
0 commit comments