summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-03-04 19:33:23 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-03-04 19:33:23 +0000
commit36a092ab9d9fc68c1832c1ed972834cde5b8d2f8 (patch)
treee9a11790cd512ff0785e5d0ff88ce879dddb6933 /usr.sbin/bgpd
parent5dbdb9a739b32a5eafb3411a8267f6e8aecd6d1c (diff)
Typos grab bag of the month, eyeballed by jmc@
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r--usr.sbin/bgpd/parse.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y
index 2c472341e11..5bf2242fc6f 100644
--- a/usr.sbin/bgpd/parse.y
+++ b/usr.sbin/bgpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.181 2006/02/10 14:34:40 claudio Exp $ */
+/* $OpenBSD: parse.y,v 1.182 2006/03/04 19:33:22 miod Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -1254,7 +1254,7 @@ filter_set_opt : LOCALPREF number {
}
| LOCALPREF '+' number {
if ($3 > INT_MAX) {
- yyerror("localpref to big: max %u", INT_MAX);
+ yyerror("localpref too big: max %u", INT_MAX);
YYERROR;
}
if (($$ = calloc(1, sizeof(struct filter_set))) == NULL)
@@ -1280,7 +1280,7 @@ filter_set_opt : LOCALPREF number {
}
| MED '+' number {
if ($3 > INT_MAX) {
- yyerror("metric to big: max %u", INT_MAX);
+ yyerror("metric too big: max %u", INT_MAX);
YYERROR;
}
if (($$ = calloc(1, sizeof(struct filter_set))) == NULL)
@@ -1306,7 +1306,7 @@ filter_set_opt : LOCALPREF number {
}
| METRIC '+' number {
if ($3 > INT_MAX) {
- yyerror("metric to big: max %u", INT_MAX);
+ yyerror("metric too big: max %u", INT_MAX);
YYERROR;
}
if (($$ = calloc(1, sizeof(struct filter_set))) == NULL)
@@ -1332,7 +1332,7 @@ filter_set_opt : LOCALPREF number {
}
| WEIGHT '+' number {
if ($3 > INT_MAX) {
- yyerror("weight to big: max %u", INT_MAX);
+ yyerror("weight too big: max %u", INT_MAX);
YYERROR;
}
if (($$ = calloc(1, sizeof(struct filter_set))) == NULL)