rclone: Better field names for stdio conn

This commit is contained in:
Michael Eischer 2020-07-25 23:51:02 +02:00
parent 3cd927d180
commit 01b9581453
2 changed files with 18 additions and 18 deletions

View file

@ -88,9 +88,9 @@ func run(command string, args ...string) (*StdioConn, *exec.Cmd, *sync.WaitGroup
}
c := &StdioConn{
stdin: stdout,
stdout: stdin,
cmd: cmd,
receive: stdout,
send: stdin,
cmd: cmd,
}
return c, cmd, &wg, bg, nil