summaryrefslogtreecommitdiff
path: root/lib/smux.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2017-07-13 17:49:13 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2017-07-13 20:29:22 +0200
commit5c7571d43f57317b0827ac82fbebc4cdc6865be0 (patch)
tree2bc63ccbd805abc9689e9f3345e34871558d5c26 /lib/smux.c
parent83eba583d7be5afaf2eba35ce4d391f645af4bfa (diff)
*: ditch vty_outln(), part 1 of 2
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/smux.c')
-rw-r--r--lib/smux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smux.c b/lib/smux.c
index 6f4b45f9a3..f8bf01e289 100644
--- a/lib/smux.c
+++ b/lib/smux.c
@@ -1387,7 +1387,7 @@ config_write_smux (struct vty *vty)
vty_out (vty, "%s%d", first ? "" : ".", (int) smux_oid[i]);
first = 0;
}
- vty_outln (vty, " %s", smux_passwd);
+ vty_out (vty, " %s\n", smux_passwd);
}
return 0;
}