From 57074be9b34cb60716a014f5a9693c767e205cac Mon Sep 17 00:00:00 2001 From: thomae <4493560+thomae@users.noreply.github.com> Date: Mon, 1 Nov 2021 14:40:39 +0100 Subject: [PATCH] serve sftp: fix typo --- cmd/serve/sftp/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/serve/sftp/connection.go b/cmd/serve/sftp/connection.go index d269f7108..15dc1049c 100644 --- a/cmd/serve/sftp/connection.go +++ b/cmd/serve/sftp/connection.go @@ -230,7 +230,7 @@ func (c *conn) handleChannel(newChannel ssh.NewChannel) { // Wait for either subsystem "sftp" or "exec" request if <-isSFTP { if err := serveChannel(channel, c.handlers, c.what); err != nil { - fs.Errorf(c.what, "Failed to serve SFPT: %v", err) + fs.Errorf(c.what, "Failed to serve SFTP: %v", err) } } else { var rc = uint32(0)