Project

General

Profile

« Previous | Next » 

Revision 7a2490e1

Added by Jim Pingle over 9 years ago

Correct this function call. Fixes #5799

View differences:

src/usr/local/bin/filterparser.php
44 44
while (!feof($log)) {
45 45
	$line = fgets($log);
46 46
	$line = rtrim($line);
47
	$flent = parse_filter_line(trim($line));
47
	$flent = parse_firewall_log_line(trim($line));
48 48
	if ($flent != "") {
49 49
		$flags = (($flent['proto'] == "TCP") && !empty($flent['tcpflags'])) ? ":" . $flent['tcpflags'] : "";
50 50
		echo "{$flent['time']} {$flent['act']} {$flent['realint']} {$flent['proto']}{$flags} {$flent['src']} {$flent['dst']}\n";

Also available in: Unified diff