Skip to content

Commit

Permalink
Merge pull request #1245 from koeppea/fix-1244
Browse files Browse the repository at this point in the history
etterfilter: fix regex to match a function call
  • Loading branch information
LocutusOfBorg authored Feb 5, 2024
2 parents 7bb2d7a + 805f22b commit 6800f4f
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 6800f4f

Please sign in to comment.