summaryrefslogtreecommitdiff
path: root/pimd/pim_vty.c
diff options
context:
space:
mode:
authorDaniel Walton <dwalton@cumulusnetworks.com>2016-09-25 16:49:39 +0000
committerDaniel Walton <dwalton@cumulusnetworks.com>2016-09-25 16:49:39 +0000
commit199d90a10eea7115c2854821ed11a229d72d1f23 (patch)
tree777a93c01ea95ecf986d1ad6f7ee4e2cd6eaa11f /pimd/pim_vty.c
parent3ce54f781213b28bea95449f294ffc07630c9412 (diff)
Expand #defines in command strings
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_vty.c')
-rw-r--r--pimd/pim_vty.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c
index f1c8930856..bc0f2c7e58 100644
--- a/pimd/pim_vty.c
+++ b/pimd/pim_vty.c
@@ -98,7 +98,7 @@ int pim_global_config_write(struct vty *vty)
char buffer[32];
if (PIM_MROUTE_IS_ENABLED) {
- vty_out(vty, "%s%s", PIM_CMD_IP_MULTICAST_ROUTING, VTY_NEWLINE);
+ vty_out(vty, "ip multicast-routing%s", VTY_NEWLINE);
++writes;
}
if (qpim_rp.rpf_addr.s_addr != INADDR_NONE) {
@@ -170,8 +170,7 @@ int pim_interface_config_write(struct vty *vty)
/* IF ip igmp query-interval */
if (pim_ifp->igmp_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL)
{
- vty_out(vty, " %s %d%s",
- PIM_CMD_IP_IGMP_QUERY_INTERVAL,
+ vty_out(vty, " ip igmp query-interval %d%s",
pim_ifp->igmp_default_query_interval,
VTY_NEWLINE);
++writes;
@@ -180,8 +179,7 @@ int pim_interface_config_write(struct vty *vty)
/* IF ip igmp query-max-response-time */
if (pim_ifp->igmp_query_max_response_time_dsec != IGMP_QUERY_MAX_RESPONSE_TIME_DSEC)
{
- vty_out(vty, " %s %d%s",
- PIM_CMD_IP_IGMP_QUERY_MAX_RESPONSE_TIME_DSEC,
+ vty_out(vty, " ip igmp query-max-response-time-dsec %d%s",
pim_ifp->igmp_query_max_response_time_dsec,
VTY_NEWLINE);
++writes;