Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
6eb7c71a
Commit
6eb7c71a
authored
Aug 07, 2015
by
Ad Schellevis
Committed by
Franco Fichtner
Aug 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(IDS) fix empty query result on single item
parent
7cd2bb65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
log.py
src/opnsense/scripts/suricata/lib/log.py
+3
-3
No files found.
src/opnsense/scripts/suricata/lib/log.py
View file @
6eb7c71a
...
...
@@ -60,9 +60,9 @@ def reverse_log_reader(filename, block_size = 8192, start_pos=None):
eol
=
data
.
rfind
(
'
\n
'
)
# field line and position in file
yield
{
'line'
:
line
.
strip
(),
'pos'
:
line_end
}
if
file_byte_start
==
0
and
eol
==
-
1
:
# flush last line
yield
{
'line'
:
data
.
strip
(),
'pos'
:
len
(
data
)}
if
file_byte_start
==
0
and
eol
==
-
1
:
# flush last line
yield
{
'line'
:
data
.
strip
(),
'pos'
:
len
(
data
)}
if
file_byte_start
==
0
:
break
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment