From 575f9ccaab7ef5eccd520d2e216ccfb8edcc48bc Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Sat, 1 Jun 2024 16:40:13 +0200 Subject: [PATCH] System: High Availability: Settings - fix version ignored due to selecting the wrong field (https://github.com/opnsense/core/issues/7485) --- src/etc/inc/interfaces.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/inc/interfaces.inc b/src/etc/inc/interfaces.inc index ad598d351..9f9e0ef23 100644 --- a/src/etc/inc/interfaces.inc +++ b/src/etc/inc/interfaces.inc @@ -1287,8 +1287,8 @@ function interfaces_carp_setup() } $version = ''; - if (!empty($config['hasync']['version'])) { - $version = 'version ' . escapeshellarg($config['hasync']['version']); + if (!empty($config['hasync']['pfsyncversion'])) { + $version = 'version ' . escapeshellarg($config['hasync']['pfsyncversion']); } $intf_stats = legacy_interfaces_details();