Skip to content

Commit d57ab21

Browse files
committed
caddytls: Pointer receiver (fix #6885)
1 parent f4432a3 commit d57ab21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/caddytls/ech.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ func (ECHDNSPublisher) CaddyModule() caddy.ModuleInfo {
594594
}
595595
}
596596

597-
func (dnsPub ECHDNSPublisher) Provision(ctx caddy.Context) error {
597+
func (dnsPub *ECHDNSPublisher) Provision(ctx caddy.Context) error {
598598
dnsProvMod, err := ctx.LoadModule(dnsPub, "ProviderRaw")
599599
if err != nil {
600600
return fmt.Errorf("loading ECH DNS provider module: %v", err)

0 commit comments

Comments
 (0)