diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-05-13 21:37:43 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-05-13 21:37:43 +0000 |
commit | 8236fb58d3790ab0ff0d2a7cc33b0506f3a43eb9 (patch) | |
tree | 5863331a5f814758a898e90fdca3f1d144095009 /sbin/pfctl/pfctl_parser.c | |
parent | 80b0150c5a98e98918c7c24a152a2665293cf92b (diff) |
correct rule printing
Diffstat (limited to 'sbin/pfctl/pfctl_parser.c')
-rw-r--r-- | sbin/pfctl/pfctl_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c index 2e887355c44..8dacc393cce 100644 --- a/sbin/pfctl/pfctl_parser.c +++ b/sbin/pfctl/pfctl_parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_parser.c,v 1.153 2003/05/13 21:15:07 henning Exp $ */ +/* $OpenBSD: pfctl_parser.c,v 1.154 2003/05/13 21:37:42 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -749,7 +749,7 @@ print_rule(struct pf_rule *r, int verbose) if (r->tagname[0]) printf("tag %s ", r->tagname); if (r->match_tagname[0]) - printf("with tag %s ", r->match_tagname); + printf("tagged %s ", r->match_tagname); printf("\n"); } |