mirror of https://github.com/pkg/sftp.git
fix typo, error message is now two-way greppable
This commit is contained in:
parent
c6f90f0596
commit
1d73fd92d5
2
conn.go
2
conn.go
|
@ -91,7 +91,7 @@ func (c *clientConn) recv() error {
|
|||
// This is an unexpected occurrence. Send the error
|
||||
// back to all listeners so that they terminate
|
||||
// gracefully.
|
||||
return errors.Errorf("sid: %v not fond", sid)
|
||||
return errors.Errorf("sid not found: %v", sid)
|
||||
}
|
||||
|
||||
ch <- result{typ: typ, data: data}
|
||||
|
|
Loading…
Reference in New Issue