diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2017-11-27 16:53:05 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2017-11-27 16:53:05 +0000 |
commit | 1ead5edeb3f531e81df4e1ec9e0608ec27cb1645 (patch) | |
tree | f2ff04927d40eae1fbae793729c49f112798fb68 /usr.sbin/bgpctl/bgpctl.c | |
parent | d33b112de139cdaffd3f35d8e5b71b6fabd00b71 (diff) |
lenght->length, mostly in comments
Diffstat (limited to 'usr.sbin/bgpctl/bgpctl.c')
-rw-r--r-- | usr.sbin/bgpctl/bgpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c index 177e00e00a7..bec68d17eb6 100644 --- a/usr.sbin/bgpctl/bgpctl.c +++ b/usr.sbin/bgpctl/bgpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.201 2017/10/16 08:39:16 job Exp $ */ +/* $OpenBSD: bgpctl.c,v 1.202 2017/11/27 16:53:04 sthen Exp $ */ /* * Copyright (c) 2003 Henning Brauer <henning@openbsd.org> @@ -562,7 +562,7 @@ show_summary_msg(struct imsg *imsg, int nodescr) a = log_as(p->conf.remote_as); alen = strlen(a); - /* max displayed lenght of the peers name is 28 */ + /* max displayed length of the peers name is 28 */ if (alen < 28) { if (strlen(s) > 28 - alen) s[28 - alen] = 0; |