-
-
Save xeioex/199124d7e92dc3c95c0b1868ccb4287e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/conf/order.rs b/src/conf/order.rs | |
| index fd43715..86a72af 100644 | |
| --- a/src/conf/order.rs | |
| +++ b/src/conf/order.rs | |
| @@ -323,7 +323,6 @@ fn validate_dns_identifier(name: &str) -> Result<bool, NameError> { | |
| b'*' if state == State::Start => State::Wildcard, | |
| b'.' if state != State::Dot => State::Dot, | |
| - b'/' | b':' => return Err(NameError::Unexpected(ch as _, i)), | |
| // '*' can only be followed by '.'. | |
| _ if state == State::Wildcard => return Err(NameError::Unexpected(ch as _, i)), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment