diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-27 14:33:13 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-27 14:33:13 +0000 |
commit | 2c9603290e7cf809a82fcc82d9244860276c577e (patch) | |
tree | 8aa6957e50f83def7cfed2cd83f830bbbcd97be8 | |
parent | ee4c57309394d460bd28dd03faec03383bb2ca93 (diff) |
fix error message for altq ifspec without child queues
-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 172b9cdd70b..e938390f816 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.217 2002/11/26 21:10:45 henning Exp $ */ +/* $OpenBSD: parse.y,v 1.218 2002/11/27 14:33:12 henning Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -540,7 +540,7 @@ altqif : ALTQ interface SCHEDULER schedtype bandwidth tbrsize } a.tbrsize = $6; if ($8 == NULL) { - yyerror("no child queues?"); + yyerror("no child queues specified"); YYERROR; } if (expand_altq(&a, $2, $8)) |