summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2022-10-17 16:51:37 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2022-10-17 16:51:37 +0000
commit4be0c729d03e148940b22796b96f14a5df1345e0 (patch)
tree5bb178f0e2aa78dadcad44bcb6197bf993c23a4c /usr.sbin
parentf318e57d95b6a151fde64579250a556cba08ae31 (diff)
SHOW_METRICS for the actions enum. Just to match the rest.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpctl/bgpctl.c6
-rw-r--r--usr.sbin/bgpctl/parser.c4
-rw-r--r--usr.sbin/bgpctl/parser.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/bgpctl/bgpctl.c b/usr.sbin/bgpctl/bgpctl.c
index 57613c98881..016809272f2 100644
--- a/usr.sbin/bgpctl/bgpctl.c
+++ b/usr.sbin/bgpctl/bgpctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpctl.c,v 1.285 2022/10/17 12:01:19 claudio Exp $ */
+/* $OpenBSD: bgpctl.c,v 1.286 2022/10/17 16:51:36 claudio Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
@@ -256,7 +256,7 @@ main(int argc, char *argv[])
case SHOW_RIB_MEM:
imsg_compose(ibuf, IMSG_CTL_SHOW_RIB_MEM, 0, 0, -1, NULL, 0);
break;
- case SHOW_METRIC:
+ case SHOW_METRICS:
output = &ometric_output;
numdone = 2;
imsg_compose(ibuf, IMSG_CTL_SHOW_NEIGHBOR, 0, 0, -1, NULL, 0);
@@ -400,7 +400,7 @@ main(int argc, char *argv[])
}
- if (res->action == SHOW_METRIC && --numdone > 0) {
+ if (res->action == SHOW_METRICS && --numdone > 0) {
done = 0;
goto again;
}
diff --git a/usr.sbin/bgpctl/parser.c b/usr.sbin/bgpctl/parser.c
index 730fc8ebc42..df79566a933 100644
--- a/usr.sbin/bgpctl/parser.c
+++ b/usr.sbin/bgpctl/parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.c,v 1.116 2022/10/17 15:04:12 claudio Exp $ */
+/* $OpenBSD: parser.c,v 1.117 2022/10/17 16:51:36 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -141,7 +141,7 @@ static const struct token t_show[] = {
{ KEYWORD, "sets", SHOW_SET, NULL},
{ KEYWORD, "rtr", SHOW_RTR, NULL},
{ KEYWORD, "mrt", SHOW_MRT, t_show_mrt},
- { KEYWORD, "metrics", SHOW_METRIC, NULL},
+ { KEYWORD, "metrics", SHOW_METRICS, NULL},
{ ENDTOKEN, "", NONE, NULL}
};
diff --git a/usr.sbin/bgpctl/parser.h b/usr.sbin/bgpctl/parser.h
index 45fea196003..9f1ae95e9e5 100644
--- a/usr.sbin/bgpctl/parser.h
+++ b/usr.sbin/bgpctl/parser.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.h,v 1.43 2022/10/17 12:01:19 claudio Exp $ */
+/* $OpenBSD: parser.h,v 1.44 2022/10/17 16:51:36 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -37,7 +37,7 @@ enum actions {
SHOW_RIB_MEM,
SHOW_NEXTHOP,
SHOW_INTERFACE,
- SHOW_METRIC,
+ SHOW_METRICS,
RELOAD,
FIB,
FIB_COUPLE,