Skip to content

Commit

Permalink
etterfilter: fix regex to match a function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Koeppe committed Feb 4, 2024
1 parent f03a117 commit 805f22b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/etterfilter/ef_syntax.l
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
%option noinput

OFFSET [[:alnum:]]+\.[A-Za-z]+[\.[A-Za-z]+]*
FUNCTION [a-z_]+\([^)]+\)
FUNCTION [a-z_]+\([^)]*\)
CONST [0-9]+|0x[0-9a-fA-F]+|[A-Z6]+
STRING \"([^\0"\\]*(\\.[^\0"\\]*)*)\"
IPADDR \'[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\'
Expand Down

0 comments on commit 805f22b

Please sign in to comment.