diff options
author | Ondrej Filip <feela@network.cz> | 2015-06-01 10:41:17 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2015-06-01 10:41:17 +0200 |
commit | 398f92253186d70eb3f2e910c7f8dd2636ee5fa1 (patch) | |
tree | b34496b367ebf39bd476080f58c88ac5840db78c | |
parent | 9fe1d3ca8a6420b4bdaf15a54ab7b13be6cc07eb (diff) |
Typo fix by Hans van Kranenburg
-rw-r--r-- | proto/ospf/iface.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index 656184c6..9b0f7797 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -1344,9 +1344,9 @@ ospf_iface_info(struct ospf_iface *ifa) cli_msg(-1015, "\tRetransmit timer: %u", ifa->rxmtint); if ((ifa->type == OSPF_IT_BCAST) || (ifa->type == OSPF_IT_NBMA)) { - cli_msg(-1015, "\tDesigned router (ID): %R", ifa->drid); - cli_msg(-1015, "\tDesigned router (IP): %I", ifa->drip); - cli_msg(-1015, "\tBackup designed router (ID): %R", ifa->bdrid); - cli_msg(-1015, "\tBackup designed router (IP): %I", ifa->bdrip); + cli_msg(-1015, "\tDesignated router (ID): %R", ifa->drid); + cli_msg(-1015, "\tDesignated router (IP): %I", ifa->drip); + cli_msg(-1015, "\tBackup designated router (ID): %R", ifa->bdrid); + cli_msg(-1015, "\tBackup designated router (IP): %I", ifa->bdrip); } } |