Skip to content

Commit d6adbb3

Browse files
reversed a small change which made this scp function exported
1 parent ad8cd66 commit d6adbb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/server/handlers/scp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"golang.org/x/crypto/ssh"
1111
)
1212

13-
func Scp(connection ssh.Channel, requests <-chan *ssh.Request, mode string, path string, controllableClients *sync.Map) error {
13+
func scp(connection ssh.Channel, requests <-chan *ssh.Request, mode string, path string, controllableClients *sync.Map) error {
1414
go ssh.DiscardRequests(requests)
1515

1616
parts := strings.SplitN(path, ":", 2)

internal/server/handlers/session.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func Session(controllableClients *sync.Map, autoCompleteClients *trie.Trie) inte
6666

6767
if loc != -1 {
6868
req.Reply(true, nil)
69-
Scp(connection, requests, mode, strings.Join(parts[loc:], " "), controllableClients)
69+
scp(connection, requests, mode, strings.Join(parts[loc:], " "), controllableClients)
7070
}
7171
return
7272
}

0 commit comments

Comments
 (0)