caddypki: Try to fix lint warnings

This commit is contained in:
Matthew Holt 2022-03-02 13:38:05 -07:00
parent 78e381b29f
commit 9b7cdfa2f2
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ func (a *adminAPI) handleCAInfo(w http.ResponseWriter, r *http.Request) error {
}
w.Header().Set("Content-Type", "application/json")
w.Write(encoded)
_, _ = w.Write(encoded)
return nil
}
@ -171,7 +171,7 @@ func (a *adminAPI) handleCACerts(w http.ResponseWriter, r *http.Request) error {
w.Header().Set("Content-Type", "application/pem-certificate-chain")
_, err = w.Write(interCert)
if err == nil {
w.Write(rootCert)
_, _ = w.Write(rootCert)
}
return nil