Skip to content

Commit 5aa958e

Browse files
committed
Fix sequence type for $DHCP
1 parent 021a46b commit 5aa958e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dnscrypt-proxy/plugin_forward.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func (plugin *PluginForward) Init(proxy *Proxy) error {
8989
if len(sequence) > 0 && sequence[len(sequence)-1].typ == DHCP {
9090
// Ignore repetitions
9191
} else {
92-
sequence = append(sequence, SearchSequenceItem{typ: Bootstrap})
92+
sequence = append(sequence, SearchSequenceItem{typ: DHCP})
9393
dlog.Infof("Forwarding [%s] to the DHCP servers", domain)
9494
}
9595
requiresDHCP = true

0 commit comments

Comments
 (0)