isisd: save metric-style narrow

isisd defaults to wide metric style. So if narrow metric style is
configured, a matching setting should be written to the configuration,
allowing a narrow metric-style setting to be saved.

Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
Christian Franke 2012-11-27 01:10:28 +00:00 committed by David Lamparter
parent de543de3d7
commit f818c8f3fb

View File

@ -2857,6 +2857,11 @@ isis_config_write (struct vty *vty)
vty_out (vty, " metric-style transition%s", VTY_NEWLINE);
write++;
}
else
{
vty_out (vty, " metric-style narrow%s", VTY_NEWLINE);
write++;
}
/* ISIS - overload-bit */
if (area->overload_bit)
{