diff options
author | June McEnroe <june@causal.agency> | 2019-11-14 16:16:02 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-14 16:16:02 -0500 |
commit | f979efcffdcfe5869a8aa11b8701d31fd35f867e (patch) | |
tree | 08b4b30f6454334be2264e1bb5f8e8721d99695f | |
parent | Filter multi-prefix (diff) | |
download | pounce-f979efcffdcfe5869a8aa11b8701d31fd35f867e.tar.gz pounce-f979efcffdcfe5869a8aa11b8701d31fd35f867e.zip |
Tweak filter regexes
Diffstat (limited to '')
-rw-r--r-- | client.c | 6 |
1 files changed, 3 insertions, 3 deletions
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, "( :?[^!]+)![^ ]+") ); } |