summaryrefslogtreecommitdiff
path: root/sbin/pfctl/pfctl_parser.c
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2002-11-18 22:49:16 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2002-11-18 22:49:16 +0000
commit01ef9d16c38b163d3c0ff2b7acf62320a761e02e (patch)
treedc08b27c8ceac5342b0d765c949abca499288ec1 /sbin/pfctl/pfctl_parser.c
parent323c41ca9bc0986dc2a83bb659368c38dfaf02e1 (diff)
altq and pf merged
this isn't 100% done yet: the print_ stuff isn't finished, some features will be added later, and there is no documetation yet, but committing now enables a few more people to work on. print_altq_node stuff hacked by Daniel at euroBSDcon; lotsa stuff from kjc, debugging help also pb and camiel. lots of good ideas by theo. "commit now" theo philipp daniel
Diffstat (limited to 'sbin/pfctl/pfctl_parser.c')
-rw-r--r--sbin/pfctl/pfctl_parser.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c
index 6181a438eec..0400f34c4ae 100644
--- a/sbin/pfctl/pfctl_parser.c
+++ b/sbin/pfctl/pfctl_parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_parser.c,v 1.102 2002/10/25 10:40:45 camield Exp $ */
+/* $OpenBSD: pfctl_parser.c,v 1.103 2002/11/18 22:49:15 henning Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -811,6 +811,8 @@ print_rule(struct pf_rule *r)
}
if (r->label[0])
printf("label %s", r->label);
+ if (r->qname[0])
+ printf("queue %s", r->qname);
printf("\n");
}