summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpctl/irr_prefix.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2010-05-10 02:00:51 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2010-05-10 02:00:51 +0000
commite4dc71b9fd4a33715b07f881315d244cf5790dce (patch)
treeef3d541f654538fb428589bcde9e9b73c688157d /usr.sbin/bgpctl/irr_prefix.c
parent5323f19923d178a32640441002e11d28b3d960df (diff)
Various comment typos. 'wether' -> 'whether' (most popular), 'possiblity' ->
'possibility', 'optins' -> 'options', 'resposne' -> 'response', 'unecessary' -> 'unnecessary', 'desination' -> 'destination'. Collected from various misc@ and tech@ postings, many by Brad Tilley.
Diffstat (limited to 'usr.sbin/bgpctl/irr_prefix.c')
-rw-r--r--usr.sbin/bgpctl/irr_prefix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/irr_prefix.c b/usr.sbin/bgpctl/irr_prefix.c
index 9f7d0aac042..df85a6b945c 100644
--- a/usr.sbin/bgpctl/irr_prefix.c
+++ b/usr.sbin/bgpctl/irr_prefix.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: irr_prefix.c,v 1.17 2009/09/08 16:11:36 sthen Exp $ */
+/* $OpenBSD: irr_prefix.c,v 1.18 2010/05/10 02:00:50 krw Exp $ */
/*
* Copyright (c) 2007 Henning Brauer <henning@openbsd.org>
@@ -213,7 +213,7 @@ prefix_aggregate(struct irr_prefix *a, const struct irr_prefix *b)
return (1);
}
- /* see wether we can fold them in one */
+ /* see whether we can fold them in one */
if (a->len == b->len && a->len > 1) {
if (a->af == AF_INET) {
mask = htonl(prefixlen2mask(a->len - 1));