diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2009-01-28 17:34:16 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2009-01-28 17:34:16 +0000 |
commit | a83fc87b13095d2ab8b05bb05e8bff472c6f91cd (patch) | |
tree | 97dde53078c25b582521bd8d542007a2e506a220 /usr.sbin | |
parent | 1670dd7aac37cc5b3762904fbc126d853757833d (diff) |
Print the right header for Intra-Area-Prefix LSAs when showing the database.
Diffstat (limited to 'usr.sbin')
-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"); |