Skip to content

Commit dfcd553

Browse files
committed
Fixed bug in BIND monitor.
1 parent 3ed4501 commit dfcd553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/lib/classes/monitor_tools.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ public function monitorServices() {
597597
/* Monitor BIND-Server */
598598
$data['bindserver'] = -1; // unknown - not needed
599599
if ($services['dns_server'] == 1) {
600-
if ($this->_checkTcp('localhost', 53)) {
600+
if ($this->_checkUdp('localhost', 53)) {
601601
$data['bindserver'] = 1;
602602
} else {
603603
$data['bindserver'] = 0;

0 commit comments

Comments
 (0)