diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-19 17:05:20 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-19 17:05:20 +0000 |
commit | 2563e0a16fbb24496b12a7d7f3e8728892a411f5 (patch) | |
tree | aef10fb8bbe9730230f5afd4d4eaf0ad686c08e0 /sbin | |
parent | cf8f8e0085ad99b25c86fa2a10713b5ef74e08f6 (diff) |
default priority is 1, not 0
found by pb@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index fbce8cbd683..87e358d3388 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.194 2002/11/19 12:11:36 camield Exp $ */ +/* $OpenBSD: parse.y,v 1.195 2002/11/19 17:05:19 henning Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -633,7 +633,7 @@ bandwidth : /* empty */ { } ; -priority : /* empty */ { $$ = 0; } +priority : /* empty */ { $$ = 1; } | PRIORITY number { if ($2 > 255) { yyerror("priority out of range: max 255"); |