Browse Source

caddypki: Try to fix lint warnings

master
Matthew Holt 3 years ago
parent
commit
9b7cdfa2f2
No known key found for this signature in database GPG Key ID: 2A349DD577D586A5
  1. 4
      modules/caddypki/adminapi.go

4
modules/caddypki/adminpki.go → modules/caddypki/adminapi.go

@ -138,7 +138,7 @@ func (a *adminAPI) handleCAInfo(w http.ResponseWriter, r *http.Request) error {
} }
w.Header().Set("Content-Type", "application/json") w.Header().Set("Content-Type", "application/json")
w.Write(encoded) _, _ = w.Write(encoded)
return nil 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") w.Header().Set("Content-Type", "application/pem-certificate-chain")
_, err = w.Write(interCert) _, err = w.Write(interCert)
if err == nil { if err == nil {
w.Write(rootCert) _, _ = w.Write(rootCert)
} }
return nil return nil
Loading…
Cancel
Save