From: Rafael Zalamena Date: Thu, 6 Dec 2018 19:26:10 +0000 (-0200) Subject: bgpd: don't show default value in configuration X-Git-Tag: frr-7.1-dev~121^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=d6efeaac3edf7586c79b5abd36cd2432ea436f3b;p=matthieu%2Ffrr.git bgpd: don't show default value in configuration Don't show the configuration line `rfp full-table-download off` by default as it is not the default value, instead only show `rfp full-table-download on` (the non-default value) when it is configured. This standardizes this knob to the FRR default behavior. Signed-off-by: Rafael Zalamena --- diff --git a/bgpd/rfp-example/librfp/rfp_example.c b/bgpd/rfp-example/librfp/rfp_example.c index af3092232c..e8f670cf12 100644 --- a/bgpd/rfp-example/librfp/rfp_example.c +++ b/bgpd/rfp-example/librfp/rfp_example.c @@ -255,8 +255,8 @@ static int rfp_cfg_write_cb(struct vty *vty, void *rfp_start_val) rfi->rfapi_config.holddown_factor); write++; } - if (rfi->rfapi_config.download_type != RFAPI_RFP_DOWNLOAD_FULL) { - vty_out(vty, " rfp full-table-download off\n"); + if (rfi->rfapi_config.download_type == RFAPI_RFP_DOWNLOAD_FULL) { + vty_out(vty, " rfp full-table-download on\n"); write++; } return write;