Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pf.conf.5: additional quoting for ranges in lists
When defining network address ranges in macros that will later be used as items in list macro, these ranges must be quoted with additiona simple quotes. For instance, the following does not work and is rejected as a syntax error: usr = "192.168.1.0/24" srv = "192.168.2.10 - 192.168.29" nat_ranges = "{" $usr $srv "}" Defining ranges as the following instead will work: usr = "'192.168.1.0/24'" srv = "'192.168.2.10 - 192.168.29'" MFC after: 3 days Reviewed by: Alexander Ziaee <concussious@runbox.com>
- Loading branch information