From 1a46ff7399c702f070eb7749bbc76e4ec364f0da Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 7 Oct 2019 21:40:18 +0200 Subject: [PATCH] Firewall/Log, uppercase IPv6 proto, closes https://github.com/opnsense/core/issues/3734 --- src/www/diag_logs_filter_summary.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/diag_logs_filter_summary.php b/src/www/diag_logs_filter_summary.php index e9e8c7b90..56bfd5c21 100644 --- a/src/www/diag_logs_filter_summary.php +++ b/src/www/diag_logs_filter_summary.php @@ -198,7 +198,7 @@ function parse_filter_line($line, $interface_names = array()) $flent['class'] = $rule_data[$field++]; $flent['flowlabel'] = $rule_data[$field++]; $flent['hlim'] = $rule_data[$field++]; - $flent['proto'] = $rule_data[$field++]; + $flent['proto'] = strtoupper($rule_data[$field++]); $flent['protoid'] = $rule_data[$field++]; }