We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21da9c0 commit 11702a0Copy full SHA for 11702a0
sshdconfig/src/parser.rs
@@ -60,7 +60,7 @@ impl SshdConfigParser {
60
}
61
match node.kind() {
62
"keyword" => self.parse_keyword_node(node, input, input_bytes),
63
- "comment" | "empty_line" => Ok(()),
+ "comment" | "empty_line" | "match" => Ok(()), // TODO: do not ignore match nodes when parsing
64
_ => Err(SshdConfigError::ParserError(t!("parser.unknownNodeType", node = node.kind()).to_string())),
65
66
0 commit comments