Hi,

A typo slipped into Claudio's patch. While at it, fix the same typo elsewhere.

Denis


Index: parse.y
===================================================================
RCS file: /cvs/src/usr.sbin/bgpd/parse.y,v
retrieving revision 1.308
diff -u -p -r1.308 parse.y
--- parse.y     31 May 2017 10:44:00 -0000      1.308
+++ parse.y     31 May 2017 19:07:05 -0000
@@ -3218,7 +3218,7 @@ parseextcommunity(struct filter_extcommu
                        return (-1);
                }
                if (errno == ERANGE && ullval > EXT_COMMUNITY_OPAQUE_MAX) {
-                       yyerror("Bad ext-community value to big");
+                       yyerror("Bad ext-community value too big");
                        return (-1);
                }
                c->data.ext_opaq = ullval;
@@ -3504,7 +3504,7 @@ merge_prefixspec(struct filter_prefix_l 
        case OP_LE:
        case OP_GT:
                if (pl->len_min > max_len) {
-                       yyerror("prefixlen %d to big for AF, limit %d",
+                       yyerror("prefixlen %d too big for AF, limit %d",
                            pl->len_min, max_len);
                        return (-1);
                }
@@ -3516,7 +3516,7 @@ merge_prefixspec(struct filter_prefix_l 
                break;
        case OP_LT:
                if (pl->len_min > max_len - 1) {
-                       yyerror("prefixlen %d to big for AF, limit %d",
+                       yyerror("prefixlen %d too big for AF, limit %d",
                            pl->len_min, max_len - 1);
                        return (-1);
                }

Reply via email to