diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2026-04-17 04:05:59 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2026-04-17 04:09:42 +0000 |
| commit | f5d0b30e4af1163bdc18a893b17236517b67790a (patch) | |
| tree | 7bb6bd4d8a57bd5cee71aa3159cbaa8440cce0fe | |
| parent | 51d2c38010824b90d7462711896a88165db9d015 (diff) | |
ippool(5): Correct example in man page
The example provided puts the semicolon in the wrong place. It must
come after the file:// specification, not in it.
MFC after: 1 week
| -rw-r--r-- | sbin/ipf/ippool/ippool.5 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ipf/ippool/ippool.5 b/sbin/ipf/ippool/ippool.5 index b45675bea069..1ab8681bef8b 100644 --- a/sbin/ipf/ippool/ippool.5 +++ b/sbin/ipf/ippool/ippool.5 @@ -121,7 +121,7 @@ addresses from. To do this simply use a "file://" URL where you would specify an actual IP address. .PP .nf -pool ipf/tree (name rfc1918;) { "file:///etc/ipf/rfc1918;" }; +pool ipf/tree (name rfc1918;) { "file:///etc/ipf/rfc1918"; }; .fi .PP The contents of the file might look something like this: |
