diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-12-20 21:16:05 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-12-20 21:16:05 +0000 |
commit | 6d38bf1a80dd5babaa86f4722838f982e0310e9d (patch) | |
tree | ec39d75821ffe2c3d198e950b6095e37d608746f /usr.sbin | |
parent | 16da6d2ee94b057ef5fbfc73701dcd76e24aa81c (diff) |
typo, tedu
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/session.c b/usr.sbin/bgpd/session.c index cd3640e3794..898a84d1345 100644 --- a/usr.sbin/bgpd/session.c +++ b/usr.sbin/bgpd/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.19 2003/12/20 21:14:55 henning Exp $ */ +/* $OpenBSD: session.c,v 1.20 2003/12/20 21:16:04 henning Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -1294,7 +1294,7 @@ getpeerbyip(in_addr_t ip) { struct peer *p; - /* we might want a more efftive way to find peers by IP */ + /* we might want a more effective way to find peers by IP */ for (p = conf->peers; p != NULL && p->conf.remote_addr.sin_addr.s_addr != ip; p = p->next) ; /* nothing */ |