diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-06-23 10:22:24 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-06-23 10:22:24 +0000 |
commit | 413b92ac776fd211eb2d1e59f7bdfaf12ff55bb1 (patch) | |
tree | 34c084f6c8c61f863c5e61daef8dd15dbbf980c3 /usr.sbin | |
parent | 03479c68f2a3dd88275df5034b88999a1d80d0c4 (diff) |
Fix comments
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/kroute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/kroute.c b/usr.sbin/bgpd/kroute.c index 7e90c908be8..0a32afad02b 100644 --- a/usr.sbin/bgpd/kroute.c +++ b/usr.sbin/bgpd/kroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kroute.c,v 1.266 2022/06/23 09:54:31 claudio Exp $ */ +/* $OpenBSD: kroute.c,v 1.267 2022/06/23 10:22:23 claudio Exp $ */ /* * Copyright (c) 2022 Claudio Jeker <claudio@openbsd.org> @@ -614,7 +614,7 @@ krVPN4_change(struct ktable *kt, struct kroute_full *kl) htonl(INADDR_LOOPBACK & IN_CLASSA_NET)) return (0); - /* only single MPLS label are supported for now */ + /* only a single MPLS label is supported for now */ if (kl->prefix.labellen != 3) { log_warnx("%s: %s/%u has not a single label", __func__, log_addr(&kl->prefix), kl->prefixlen); @@ -688,7 +688,7 @@ krVPN6_change(struct ktable *kt, struct kroute_full *kl) if (IN6_IS_ADDR_LOOPBACK(&kl->nexthop.v6)) return (0); - /* only single MPLS label are supported for now */ + /* only a single MPLS label is supported for now */ if (kl->prefix.labellen != 3) { log_warnx("%s: %s/%u has not a single label", __func__, log_addr(&kl->prefix), kl->prefixlen); |