summary refs log tree commit diff
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
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(&regex, "([HG][*]?[~!@%&+])[~!@%&+]+")
+			compile(&regex, "( [HG][*]?[~!@%&+])[~!@%&+]+")
 		);
 	} else if (!wordcmp(line, 1, "353")) {
 		static regex_t regex;
 		return snip(
 			buf, sizeof(buf), line,
-			compile(&regex, "([ :][~!@%&+])[~!@%&+]+")
+			compile(&regex, "( :?[~!@%&+])[~!@%&+]+")
 		);
 	} 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(&regex, "([ :][^!]+)![^@]+@[^ ]+")
+		compile(&regex, "( :?[^!]+)![^ ]+")
 	);
 }