mirror of
https://github.com/gregtwallace/apc-p15-tool.git
synced 2025-01-22 00:04:09 +00:00
ssh: clarify log error msg
This commit is contained in:
parent
7a415f5c85
commit
41efc56c62
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ func sshCheckResponse(remoteOutPipe io.Reader) error {
|
|||
buffer := make([]uint8, 1)
|
||||
_, err := remoteOutPipe.Read(buffer)
|
||||
if err != nil {
|
||||
return fmt.Errorf("ssh: failed to make read output buffer (%w)", err)
|
||||
return fmt.Errorf("ssh: failed to read output buffer (%w)", err)
|
||||
}
|
||||
|
||||
responseType := buffer[0]
|
||||
|
|
Loading…
Reference in a new issue