diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2024-02-23 15:01:41 +0200 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2024-03-29 17:16:39 +0200 |
| commit | 0f718c963e118139c893e9c52092e278bcd3b396 (patch) | |
| tree | dce61c6695bc3badd455a64767252e6947b32711 /internal/ssh/client | |
| parent | 7a0b0cde9c7c46d5f70ebc4a9d4f4e718d835f70 (diff) | |
lint warnings
Diffstat (limited to 'internal/ssh/client')
| -rw-r--r-- | internal/ssh/client/clientkeypair.go | 3 | ||||
| -rw-r--r-- | internal/ssh/client/knownhostscallback.go | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/internal/ssh/client/clientkeypair.go b/internal/ssh/client/clientkeypair.go index b35b25d..20cdc88 100644 --- a/internal/ssh/client/clientkeypair.go +++ b/internal/ssh/client/clientkeypair.go @@ -6,7 +6,6 @@ import ( "crypto/x509" "encoding/pem" "fmt" - "io/ioutil" "os" "github.com/mimecast/dtail/internal/io/dlog" @@ -83,7 +82,7 @@ func generatePublicKey(privatekey *rsa.PublicKey) ([]byte, error) { } func writeKey(keyBytes []byte, saveFileTo string) error { - err := ioutil.WriteFile(saveFileTo, keyBytes, 0600) + err := os.WriteFile(saveFileTo, keyBytes, 0600) if err != nil { return err } diff --git a/internal/ssh/client/knownhostscallback.go b/internal/ssh/client/knownhostscallback.go index 393c4c7..fe3543c 100644 --- a/internal/ssh/client/knownhostscallback.go +++ b/internal/ssh/client/knownhostscallback.go @@ -232,8 +232,12 @@ func (c KnownHostsCallback) trustHosts(hosts []unknownHost) { // And once as [IP]:PORT addresses[knownhosts.Normalize(unknown.remote.String())] = struct{}{} - newFd.WriteString(fmt.Sprintf("%s\n", unknown.hostLine)) - newFd.WriteString(fmt.Sprintf("%s\n", unknown.ipLine)) + if _, err := newFd.WriteString(fmt.Sprintf("%s\n", unknown.hostLine)); err != nil { + panic(err) + } + if _, err := newFd.WriteString(fmt.Sprintf("%s\n", unknown.ipLine)); err != nil { + panic(err) + } } // Read old known hosts file, to see which are old and new entries |
