summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2014-05-02 14:12:06 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2014-05-02 14:12:06 +0000
commit05e315fc21e32818c17d932762705becf2013d0d (patch)
tree883c41f8f1a457cf3532aa52c3d1c4125b6c3cd6
parent156ec46e7f5b54fc822440dfe6e16c561c6d14f9 (diff)
spelling; Denis Fondras
-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 ce2241a2835..102ee664a8a 100644
--- a/usr.sbin/bgpd/parse.y
+++ b/usr.sbin/bgpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.271 2014/01/22 00:21:16 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.272 2014/05/02 14:12:05 deraadt Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -228,7 +228,7 @@ grammar : /* empty */
asnumber : NUMBER {
/*
- * Accroding to iana 65535 and 4294967295 are reserved
+ * According to iana 65535 and 4294967295 are reserved
* but enforcing this is not duty of the parser.
*/
if ($1 < 0 || $1 > UINT_MAX) {