summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJob Snijders <job@cvs.openbsd.org>2023-02-02 19:23:02 +0000
committerJob Snijders <job@cvs.openbsd.org>2023-02-02 19:23:02 +0000
commit50673dc2f5d23bdf35816107755b59b5e64fb6ff (patch)
tree2522d69e5e6e3127d3270a768f14e9296ef1c977 /usr.sbin
parent0cb78d3d629d7e56ba53aef4e938ac3cbeecd772 (diff)
Fix typo
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpctl/parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpctl/parser.c b/usr.sbin/bgpctl/parser.c
index c1069f9eb83..6053cfd8547 100644
--- a/usr.sbin/bgpctl/parser.c
+++ b/usr.sbin/bgpctl/parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parser.c,v 1.120 2023/01/30 16:53:24 claudio Exp $ */
+/* $OpenBSD: parser.c,v 1.121 2023/02/02 19:23:01 job Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -196,7 +196,7 @@ static const struct token t_show_rib[] = {
static const struct token t_show_avs[] = {
{ FLAG, "valid" , F_CTL_AVS_VALID, t_show_rib},
{ FLAG, "invalid", F_CTL_AVS_INVALID, t_show_rib},
- { FLAG, "unknonw", F_CTL_AVS_UNKNOWN, t_show_rib},
+ { FLAG, "unknown", F_CTL_AVS_UNKNOWN, t_show_rib},
{ ENDTOKEN, "", NONE, NULL}
};