aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/acme/main.go2
-rw-r--r--cmd/batch/main.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/acme/main.go b/cmd/acme/main.go
index cd80451..faff013 100644
--- a/cmd/acme/main.go
+++ b/cmd/acme/main.go
@@ -106,7 +106,7 @@ func requestCert(prov *acme.Provider, sig *acme.Signer, d domain) error {
}
log.Println("Request bundle for", d.Altnames)
- cert, err := prov.Bundle(sig, c.PrivateKey, d.Altnames)
+ cert, err := prov.Bundle(sig, c.PrivateKey, d.Altnames, nil)
if err != nil {
return err
}
diff --git a/cmd/batch/main.go b/cmd/batch/main.go
index f0a75f0..28620e3 100644
--- a/cmd/batch/main.go
+++ b/cmd/batch/main.go
@@ -8,7 +8,7 @@ func main() {
log.Fatal(err)
}
for _, c := range crt {
- log.Printf("%+v\n", c)
+ log.Printf("%+v\n", c.Leaf.NotAfter)
}
if len(*emails) > 0 && len(*domains) > 0 {
log.Println(*emails)