Firewall/Log, uppercase IPv6 proto, closes https://github.com/opnsense/core/issues/3734

This commit is contained in:
Ad Schellevis 2019-10-07 21:40:18 +02:00
parent da4a241cfd
commit 1a46ff7399

View File

@ -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++];
}