diff options
author | 2002-11-27 14:33:12 +0000 | |
---|---|---|
committer | 2002-11-27 14:33:12 +0000 | |
commit | 4bf895d74e2f49f8285388555cd917bb9d2f1862 (patch) | |
tree | a64abb275e1289a5de4f23c07dd4c8e1bc236e52 | |
parent | fix an underflow in socket timeout calculations. (diff) | |
download | wireguard-openbsd-4bf895d74e2f49f8285388555cd917bb9d2f1862.tar.xz wireguard-openbsd-4bf895d74e2f49f8285388555cd917bb9d2f1862.zip |
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)) |