summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2005-03-13 15:27:31 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2005-03-13 15:27:31 +0000
commit8559767fb8609ba80a978119a2f62d19db4b119a (patch)
tree9abed9b329029397b4f91602ecc15ad4b8b270cb /usr.sbin/bgpd
parent47daa9f39584a3a693993108bf15d87e6ba3888a (diff)
s/to many/too many/, from jmc
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r--usr.sbin/bgpd/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y
index d75ef81f06d..8e3ef2cf638 100644
--- a/usr.sbin/bgpd/parse.y
+++ b/usr.sbin/bgpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.150 2005/03/11 12:54:19 claudio Exp $ */
+/* $OpenBSD: parse.y,v 1.151 2005/03/13 15:27:30 henning Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -1173,7 +1173,7 @@ filter_set_opt : LOCALPREF number {
fatal(NULL);
$$->type = ACTION_SET_PREPEND_SELF;
if ($2 > 128) {
- yyerror("to many prepends");
+ yyerror("too many prepends");
YYERROR;
}
$$->action.prepend = $2;
@@ -1183,7 +1183,7 @@ filter_set_opt : LOCALPREF number {
fatal(NULL);
$$->type = ACTION_SET_PREPEND_PEER;
if ($2 > 128) {
- yyerror("to many prepends");
+ yyerror("too many prepends");
YYERROR;
}
$$->action.prepend = $2;