diff options
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, "( :?[^!]+)![^ ]+") ); } |