diff options
author | 2009-01-28 17:34:15 +0000 | |
---|---|---|
committer | 2009-01-28 17:34:15 +0000 | |
commit | 8ec364259975246f4cd9ee30909f7707b6ebe122 (patch) | |
tree | 40ad2ad90ff8c1e43a9152315a4854c331a735af /usr.sbin/ospf6ctl/ospf6ctl.c | |
parent | Make races between queue and runner impossible by implementing the policy: (diff) | |
download | wireguard-openbsd-8ec364259975246f4cd9ee30909f7707b6ebe122.tar.xz wireguard-openbsd-8ec364259975246f4cd9ee30909f7707b6ebe122.zip |
Print the right header for Intra-Area-Prefix LSAs when showing the database.
Diffstat (limited to 'usr.sbin/ospf6ctl/ospf6ctl.c')
-rw-r--r-- | usr.sbin/ospf6ctl/ospf6ctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospf6ctl/ospf6ctl.c b/usr.sbin/ospf6ctl/ospf6ctl.c index ad374336fee..7041eb5b5c3 100644 --- a/usr.sbin/ospf6ctl/ospf6ctl.c +++ b/usr.sbin/ospf6ctl/ospf6ctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf6ctl.c,v 1.18 2009/01/01 23:41:42 claudio Exp $ */ +/* $OpenBSD: ospf6ctl.c,v 1.19 2009/01/28 17:34:15 stsp Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -535,7 +535,7 @@ show_database_head(struct in_addr aid, char *ifname, u_int16_t type) format = "Inter Area Router Link States"; break; case LSA_TYPE_INTRA_A_PREFIX: - format = "Router Link States"; + format = "Intra Area Prefix Link States"; break; case LSA_TYPE_EXTERNAL: printf("\n%-15s %s\n\n", "", "Type-5 AS External Link States"); |