diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-03-04 16:05:43 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-03-04 16:05:43 +0000 |
commit | ffe3fbb576e7a2fef088508e3be0433e35fdd8e7 (patch) | |
tree | f0377de7ae0f8303ea84a9a41c159baa39aafc0d /share/man | |
parent | 5c6ce626b204822824dec8b1590376cfaf5e3a0f (diff) |
make the label example actually work... (missing quotes)
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man5/pf.conf.5 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index c57e1a5c0c7..8d1743caf58 100644 --- a/share/man/man5/pf.conf.5 +++ b/share/man/man5/pf.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.conf.5,v 1.195 2003/03/04 15:54:54 henning Exp $ +.\" $OpenBSD: pf.conf.5,v 1.196 2003/03/04 16:05:42 henning Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" All rights reserved. @@ -1152,17 +1152,17 @@ The rule number. For example: .Pp .Bd -literal -offset indent -.Ic ips = "{ 1.2.3.4, 1.2.3.5 }" +.Ic ips = \&"{ 1.2.3.4, 1.2.3.5 }\&" .Ic pass in proto tcp from any to $ips \e -.Ic \ \ port >1023 label "$dstaddr:$dstport" +.Ic \ \ port >1023 label \&"$dstaddr:$dstport\&" .Ed .Pp expands to .Bd -literal -offset indent .Ic pass in proto tcp from any to 1.2.3.4 \e -.Ic \ \ port >1023 label "1.2.3.4:>1023" +.Ic \ \ port >1023 label \&"1.2.3.4:>1023\&" .Ic pass in proto tcp from any to 1.2.3.5 \e -.Ic \ \ port >1023 label "1.2.3.5:>1023" +.Ic \ \ port >1023 label \&"1.2.3.5:>1023\&" .Ed .Pp The macro expansion for the |