From f979efcffdcfe5869a8aa11b8701d31fd35f867e Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 14 Nov 2019 16:16:02 -0500 Subject: Tweak filter regexes --- client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 6653005..4c63fe8 100644 --- a/client.c +++ b/client.c @@ -360,13 +360,13 @@ static const char *filterMultiPrefix(const char *line) { static regex_t regex; return snip( buf, sizeof(buf), line, - compile(®ex, "([HG][*]?[~!@%&+])[~!@%&+]+") + compile(®ex, "( [HG][*]?[~!@%&+])[~!@%&+]+") ); } else if (!wordcmp(line, 1, "353")) { static regex_t regex; return snip( buf, sizeof(buf), line, - compile(®ex, "([ :][~!@%&+])[~!@%&+]+") + compile(®ex, "( :?[~!@%&+])[~!@%&+]+") ); } else { return line; @@ -379,7 +379,7 @@ static const char *filterUserhostInNames(const char *line) { static char buf[512]; return snip( buf, sizeof(buf), line, - compile(®ex, "([ :][^!]+)![^@]+@[^ ]+") + compile(®ex, "( :?[^!]+)![^ ]+") ); } -- cgit 1.4.1