diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-05 23:38:54 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-05 23:38:54 -0700 |
commit | b0b2b6cd2e2542c3b58c972034ab1a03bf0b3bdf (patch) | |
tree | a30739bb1148c16b40eec880f7a91d02ce4647f4 | |
parent | 785c7662a4a2ad943b2fc292a5df147f763234ac (diff) | |
download | quagga-b0b2b6cd2e2542c3b58c972034ab1a03bf0b3bdf.tar.bz2 quagga-b0b2b6cd2e2542c3b58c972034ab1a03bf0b3bdf.tar.xz |
Show no import-check
Since BGPD now has flag to default to import-check on, show the
current state of import-check in dump output.
-rw-r--r-- | bgpd/bgpd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c index 4157a8d6..d44304a1 100644 --- a/bgpd/bgpd.c +++ b/bgpd/bgpd.c @@ -4959,6 +4959,8 @@ bgp_config_write (struct vty *vty) /* BGP network import check. */ if (bgp_flag_check (bgp, BGP_FLAG_IMPORT_CHECK)) vty_out (vty, " bgp network import-check%s", VTY_NEWLINE); + else + vty_out (vty, " no bgp network import-check%s", VTY_NEWLINE); /* BGP scan interval. */ bgp_config_write_scan_time (vty); |