mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-18 18:44:44 +00:00
network time: ignore tentative as originally intended
PR: https://forum.opnsense.org/index.php?topic=44743.msg225705#msg225705
This commit is contained in:
parent
9e660d360b
commit
26de190bad
@ -437,7 +437,7 @@ function ntpd_configure_do($verbose = false)
|
||||
}
|
||||
|
||||
foreach (interfaces_addresses($ntpifs) as $tmpaddr => $info) {
|
||||
if (!$info['bind']) {
|
||||
if (!$info['bind'] || ($info['family'] == 'inet6' && $info['tentative'])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user