aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-12-23 10:26:19 +0100
committerHarald Welte <laforge@gnumonks.org>2018-12-23 10:27:45 +0100
commit34d54b2ba7968d239bfb2fbc70bcb775c1467969 (patch)
tree4e0e2e6f2202712986d71f4f47de86fcb348cb6e
parent99ae401e490e60fc07bef7eacc478be7bdcc9f5a (diff)
Fix VTY documentation error introduced in "bind" VTY port change
In 99ae401e490e60fc07bef7eacc478be7bdcc9f5a we introduced the ability to specify the TCP port to which the VTY should bind. However, the VTY dcumentation wasn't extended accordingly, causing virtually all master build jobs to fail. Change-Id: I54fb0ca0d3a884a64a349b22de70f3d9bd1a6d54
-rw-r--r--src/vty/vty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vty/vty.c b/src/vty/vty.c
index 7f6c2255..abce8871 100644
--- a/src/vty/vty.c
+++ b/src/vty/vty.c
@@ -1616,7 +1616,8 @@ DEFUN(no_vty_login,
/* vty bind */
DEFUN(vty_bind, vty_bind_cmd, "bind A.B.C.D [<0-65535>]",
"Accept VTY telnet connections on local interface\n"
- "Local interface IP address (default: " VTY_BIND_ADDR_DEFAULT ")\n")
+ "Local interface IP address (default: " VTY_BIND_ADDR_DEFAULT ")\n"
+ "Local TCP port number\n")
{
talloc_free((void*)vty_bind_addr);
vty_bind_addr = talloc_strdup(tall_vty_ctx, argv[0]);