diff options
author | paul <paul> | 2003-08-06 22:41:29 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-06 22:41:29 +0000 |
commit | 5fdc1e525707dfa651db0aec38bec13b17adc8f2 (patch) | |
tree | ac29efa8795cbe7ca5308e24491ad6d274059242 | |
parent | 4f991ef0bd977eab91034bf7976651b3c350bede (diff) |
2003-08-06 Anders K. Pedersen <mailnews+router-quagga-dev@news.cohaesio.com>
* ospfd/ospf_vty.c: (ospf_config_write) fix output of
passive-interface when IP has been specified - we still need to
print the interface.
-rw-r--r-- | ospfd/ospf_vty.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 2cce373f..c22aa453 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -7326,8 +7326,9 @@ ospf_config_write (struct vty *vty) if (OSPF_IF_PARAM_CONFIGURED (oi->params, passive_interface) && oi->params->passive_interface == OSPF_IF_PASSIVE) - vty_out (vty, " passive-interface %s%s", - inet_ntoa (oi->address->u.prefix4), VTY_NEWLINE); + vty_out (vty, " passive-interface %s %s%s", + oi->ifp->name, + inet_ntoa (oi->address->u.prefix4), VTY_NEWLINE); } |