mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
Remove config.Map.MatchErr()
Obscure and often misused.
This commit is contained in:
parent
20233fa4c4
commit
46502217ed
12 changed files with 86 additions and 107 deletions
|
@ -221,7 +221,7 @@ func (store *Storage) Init(cfg *config.Map) error {
|
|||
return "messages", nil
|
||||
}, func(m *config.Map, node config.Node) (interface{}, error) {
|
||||
if len(node.Args) != 1 {
|
||||
return nil, m.MatchErr("expected 0 or 1 arguments")
|
||||
return nil, config.NodeErr(node, "expected 0 or 1 arguments")
|
||||
}
|
||||
return node.Args[0], nil
|
||||
}, &fsstoreLocation)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue