Skip to content

Commit c9da6b9

Browse files
dmitshurgopherbot
authored andcommitted
all: fix printf(var) mistakes detected by latest printf checker
These were problematic but previously easy to miss. They're now easy to spot thanks to build failures at Go tip as of CL 610736. For golang/go#68796. Change-Id: I167f2cce2376b4070460389c673d973e4521d3dc Reviewed-on: https://go-review.googlesource.com/c/crypto/+/610797 Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
1 parent b35ab4f commit c9da6b9

File tree

1 file changed

+6
-6
lines changed
  • acme/autocert/internal/acmetest

1 file changed

+6
-6
lines changed

acme/autocert/internal/acmetest/ca.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ func (ca *CAServer) handle(w http.ResponseWriter, r *http.Request) {
308308
}
309309

310310
if err := decodePayload(&req, r.Body); err != nil {
311-
ca.httpErrorf(w, http.StatusBadRequest, err.Error())
311+
ca.httpErrorf(w, http.StatusBadRequest, "%v", err)
312312
return
313313
}
314314

@@ -328,7 +328,7 @@ func (ca *CAServer) handle(w http.ResponseWriter, r *http.Request) {
328328
Identifiers []struct{ Value string }
329329
}
330330
if err := decodePayload(&req, r.Body); err != nil {
331-
ca.httpErrorf(w, http.StatusBadRequest, err.Error())
331+
ca.httpErrorf(w, http.StatusBadRequest, "%v", err)
332332
return
333333
}
334334
ca.mu.Lock()
@@ -352,7 +352,7 @@ func (ca *CAServer) handle(w http.ResponseWriter, r *http.Request) {
352352
defer ca.mu.Unlock()
353353
o, err := ca.storedOrder(strings.TrimPrefix(r.URL.Path, "/orders/"))
354354
if err != nil {
355-
ca.httpErrorf(w, http.StatusBadRequest, err.Error())
355+
ca.httpErrorf(w, http.StatusBadRequest, "%v", err)
356356
return
357357
}
358358
if err := json.NewEncoder(w).Encode(o); err != nil {
@@ -412,7 +412,7 @@ func (ca *CAServer) handle(w http.ResponseWriter, r *http.Request) {
412412
orderID := strings.TrimPrefix(r.URL.Path, "/new-cert/")
413413
o, err := ca.storedOrder(orderID)
414414
if err != nil {
415-
ca.httpErrorf(w, http.StatusBadRequest, err.Error())
415+
ca.httpErrorf(w, http.StatusBadRequest, "%v", err)
416416
return
417417
}
418418
if o.Status != acme.StatusReady {
@@ -427,7 +427,7 @@ func (ca *CAServer) handle(w http.ResponseWriter, r *http.Request) {
427427
b, _ := base64.RawURLEncoding.DecodeString(req.CSR)
428428
csr, err := x509.ParseCertificateRequest(b)
429429
if err != nil {
430-
ca.httpErrorf(w, http.StatusBadRequest, err.Error())
430+
ca.httpErrorf(w, http.StatusBadRequest, "%v", err)
431431
return
432432
}
433433
// Issue the certificate.
@@ -449,7 +449,7 @@ func (ca *CAServer) handle(w http.ResponseWriter, r *http.Request) {
449449
defer ca.mu.Unlock()
450450
o, err := ca.storedOrder(strings.TrimPrefix(r.URL.Path, "/issued-cert/"))
451451
if err != nil {
452-
ca.httpErrorf(w, http.StatusBadRequest, err.Error())
452+
ca.httpErrorf(w, http.StatusBadRequest, "%v", err)
453453
return
454454
}
455455
if o.Status != acme.StatusValid {

0 commit comments

Comments
 (0)