aboutsummaryrefslogtreecommitdiff
path: root/provider.go
diff options
context:
space:
mode:
Diffstat (limited to 'provider.go')
-rw-r--r--provider.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/provider.go b/provider.go
index 78381ae..33f3ba6 100644
--- a/provider.go
+++ b/provider.go
@@ -225,7 +225,7 @@ func (p *Provider) Authorize(s Signer, d *Desire) error {
return err
}
- for _, ch := range d.Pick(r) {
+ for _, ch := range d.pick(r) {
if err = p.solve(s, ch); err != nil {
return err
}
@@ -249,7 +249,7 @@ func (p *Provider) queryStatus(url string) (bool, error) {
}
func (p *Provider) newCert(uri string, s Signer, d *Desire) (*x509.Certificate, nextStep, error) {
- csr, err := d.NewCSR()
+ csr, err := d.newCSR()
if err != nil {
return nil, nextStep{}, err
}