mirror of https://github.com/caddyserver/caddy.git
caddypki: Try to fix lint warnings
This commit is contained in:
parent
78e381b29f
commit
9b7cdfa2f2
|
@ -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
|
Loading…
Reference in New Issue