summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJeremie Courreges-Anglas <jca@cvs.openbsd.org>2016-12-26 21:30:11 +0000
committerJeremie Courreges-Anglas <jca@cvs.openbsd.org>2016-12-26 21:30:11 +0000
commit87afdee32f01d6a5a4babaf77532a90b841ed542 (patch)
treea9745cc4078c81ced322d179accb5c4677de9f8b /usr.sbin
parent44264c3a9ad22c566a7b9ca2d5cf8f8d7348979a (diff)
Typo, "more then" -> "more than"
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/parse.y b/usr.sbin/bgpd/parse.y
index f3f17d3ed8d..c3d25c8a928 100644
--- a/usr.sbin/bgpd/parse.y
+++ b/usr.sbin/bgpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.290 2016/10/14 16:05:36 phessler Exp $ */
+/* $OpenBSD: parse.y,v 1.291 2016/12/26 21:30:10 jca Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -3066,7 +3066,7 @@ parseextvalue(char *s, u_int32_t *v)
*v = uval | (uvalh << 16);
return (EXT_COMMUNITY_FOUR_AS);
} else {
- /* more then one dot -> IP address */
+ /* more than one dot -> IP address */
if (inet_aton(s, &ip) == 0) {
yyerror("Bad ext-community %s not parseable", s);
return (-1);