aboutsummaryrefslogtreecommitdiff
path: root/certificate.go
diff options
context:
space:
mode:
Diffstat (limited to 'certificate.go')
-rw-r--r--certificate.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/certificate.go b/certificate.go
index 3a338ba..999e718 100644
--- a/certificate.go
+++ b/certificate.go
@@ -5,8 +5,8 @@ type CSR struct {
CSR string `json:"csr"`
}
-func (p *Provider) Bundle(s Signer, d *Desire, altnames []string) error {
- csr, err := d.CSR(altnames)
+func (p *Provider) Bundle(s Signer, d *Desire) error {
+ csr, err := d.CSR()
if err != nil {
return err
}