aboutsummaryrefslogtreecommitdiffstats
path: root/config/zabbix-agent-lts/zabbix-agent-lts.inc
diff options
context:
space:
mode:
Diffstat (limited to 'config/zabbix-agent-lts/zabbix-agent-lts.inc')
-rw-r--r--config/zabbix-agent-lts/zabbix-agent-lts.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/zabbix-agent-lts/zabbix-agent-lts.inc b/config/zabbix-agent-lts/zabbix-agent-lts.inc
index 4cc113ab..7eb7c564 100644
--- a/config/zabbix-agent-lts/zabbix-agent-lts.inc
+++ b/config/zabbix-agent-lts/zabbix-agent-lts.inc
@@ -79,7 +79,7 @@ function validate_input_zabbix_agent_lts($post, &$input_errors) {
if ($post['listenport'] != '') {
if (!is_numericint($post['listenport'])) {
$input_errors[] = "'Listen Port' value is not numeric.";
- } elseif ($post['buffersize'] < 1 || $post['buffersize'] > 65535) {
+ } elseif ($post['listenport'] < 1 || $post['listenport'] > 65535) {
$input_errors[] = "You must enter a valid value for 'Listen Port'.";
}
}