From dd4dc1c2d8c6b337c758c9411b87c730eaac3b9b Mon Sep 17 00:00:00 2001 From: outdead Date: Thu, 8 Oct 2020 06:33:03 +0300 Subject: [PATCH] Fix telnet Interactive comment --- internal/proto/telnet/telnet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/proto/telnet/telnet.go b/internal/proto/telnet/telnet.go index a5dcf39..e4c6308 100644 --- a/internal/proto/telnet/telnet.go +++ b/internal/proto/telnet/telnet.go @@ -23,7 +23,7 @@ func Execute(address string, password string, command string) (string, error) { return console.Execute(command) } -// DialInteractive parses commands from input reader, executes them on remote +// Interactive parses commands from input reader, executes them on remote // server and writes responses to output writer. Password can be empty string. // In this case password will be prompted in an interactive window. func Interactive(r io.Reader, w io.Writer, address string, password string) error {