diff options
| author | Harald Welte <laforge@gnumonks.org> | 2018-03-23 19:33:27 +0100 | 
|---|---|---|
| committer | Harald Welte <laforge@gnumonks.org> | 2018-03-27 07:21:46 +0000 | 
| commit | a2501a20651bad1c1645547c8ad99af4f5c64e2e (patch) | |
| tree | 42e8a525fb29ed126343eb3a879171f9d25e9c28 /src | |
| parent | 71f781c303bb4216d3328181d7798a28a15813c9 (diff) | |
VTY: Don't welcome the user to the "control" interface, if it's VTY
This is quite confusing, I'm surprised that it has not been flagged
before...
Change-Id: I3dc07290579949891e481675d493e5a2ea6d0aed
Diffstat (limited to 'src')
| -rw-r--r-- | src/vty/vty.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/vty/vty.c b/src/vty/vty.c index e741a66a..08258e71 100644 --- a/src/vty/vty.c +++ b/src/vty/vty.c @@ -362,7 +362,7 @@ void vty_hello(struct vty *vty)  	if (host.app_info->name)  		app_name = host.app_info->name; -	vty_out(vty, "Welcome to the %s control interface%s%s", +	vty_out(vty, "Welcome to the %s VTY interface%s%s",  		app_name, VTY_NEWLINE, VTY_NEWLINE);  	if (host.app_info->copyright) | 
