diff --git a/CHANGELOG.md b/CHANGELOG.md index e274ab585c6..4ecdbdd5c45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -110,6 +110,7 @@ In this release, the schema version has changed from 10 to 12. ### Fixed +- DHCP now follows RFCs more closely ([#3443]). - Occasional panics when reading old statistics databases ([#3506]). - `reload` service action on macOS and FreeBSD ([#3457]). - Inaccurate using of service actions in the installation script ([#3450]). @@ -177,6 +178,7 @@ In this release, the schema version has changed from 10 to 12. [#3417]: https://github.com/AdguardTeam/AdGuardHome/issues/3417 [#3435]: https://github.com/AdguardTeam/AdGuardHome/issues/3435 [#3437]: https://github.com/AdguardTeam/AdGuardHome/issues/3437 +[#3443]: https://github.com/AdguardTeam/AdGuardHome/issues/3443 [#3450]: https://github.com/AdguardTeam/AdGuardHome/issues/3450 [#3457]: https://github.com/AdguardTeam/AdGuardHome/issues/3457 [#3506]: https://github.com/AdguardTeam/AdGuardHome/issues/3506 diff --git a/internal/dhcpd/broadcast_others.go b/internal/dhcpd/broadcast_others.go index 981b62a51fa..f801497e73c 100644 --- a/internal/dhcpd/broadcast_others.go +++ b/internal/dhcpd/broadcast_others.go @@ -1,5 +1,5 @@ -//go:build !(freebsd || openbsd) -// +build !freebsd,!openbsd +//go:build aix || darwin || dragonfly || linux || netbsd || solaris +// +build aix darwin dragonfly linux netbsd solaris package dhcpd diff --git a/internal/dhcpd/broadcast_others_test.go b/internal/dhcpd/broadcast_others_test.go index 933e2f5ba66..2a84134cbd2 100644 --- a/internal/dhcpd/broadcast_others_test.go +++ b/internal/dhcpd/broadcast_others_test.go @@ -1,5 +1,5 @@ -//go:build !(freebsd || openbsd) -// +build !freebsd,!openbsd +//go:build aix || darwin || dragonfly || linux || netbsd || solaris +// +build aix darwin dragonfly linux netbsd solaris package dhcpd